mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
add payment icons
This commit is contained in:
parent
63fb68faa7
commit
3caffbbd0d
BIN
public/images/american-express.png
Normal file
BIN
public/images/american-express.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
public/images/diners-club.png
Normal file
BIN
public/images/diners-club.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
BIN
public/images/discover.png
Normal file
BIN
public/images/discover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
public/images/mastercard.png
Normal file
BIN
public/images/mastercard.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
BIN
public/images/paypal.png
Normal file
BIN
public/images/paypal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
BIN
public/images/visa.png
Normal file
BIN
public/images/visa.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
@ -2,12 +2,47 @@
|
||||
|
||||
@section('body')
|
||||
<main class="main">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="col-lg-6">test</div>
|
||||
<div class="col-lg-6">test2</div>
|
||||
<div class="container-fluid">
|
||||
<div class="row" style="margin-top: 30px;">
|
||||
<div class="col-6 col-lg-4">
|
||||
<div class="card">
|
||||
<div class="card-body p-3 d-flex align-items-center">
|
||||
<i class="fa fa-money bg-primary p-3 font-2xl mr-3"></i>
|
||||
<div>
|
||||
<div class="text-value-sm text-primary">$1.999,50</div>
|
||||
<div class="text-muted text-uppercase font-weight-bold small">{{ ctrans('texts.total_invoiced')}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-6 col-lg-4">
|
||||
<div class="card">
|
||||
<div class="card-body p-3 d-flex align-items-center">
|
||||
<i class="fa fa-hourglass-end bg-info p-3 font-2xl mr-3"></i>
|
||||
<div>
|
||||
<div class="text-value-sm text-info">$1.999,50</div>
|
||||
<div class="text-muted text-uppercase font-weight-bold small">{{ ctrans('texts.paid_to_date') }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-6 col-lg-4">
|
||||
<div class="card">
|
||||
<div class="card-body p-3 d-flex align-items-center">
|
||||
<i class="fa fa-exclamation-triangle bg-warning p-3 font-2xl mr-3"></i>
|
||||
<div>
|
||||
<div class="text-value-sm text-warning">$1.999,50</div>
|
||||
<div class="text-muted text-uppercase font-weight-bold small">{{ ctrans('texts.open_balance')}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- update payment methods -->
|
||||
<div class="row" style="margin-top: 30px;">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
Loading…
x
Reference in New Issue
Block a user