Skip to content

Commit

Permalink
Las facturas vencidas de 5 y 10 días ahora tienen acceso rÃapido desd…
Browse files Browse the repository at this point in the history
…e el dashboard
  • Loading branch information
Borja José committed Sep 9, 2015
1 parent bcf5131 commit a5cb3fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/main/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<tbody>
@foreach(Invoice::get5DaysInvoices() as $invoice)
<tr>
<td>{{$invoice->facnumber}}</td>
<td><a href="{{URL::to('/invoice/'.$invoice->id)}}">{{$invoice->facnumber}}</a></td>
<td>{{Client::getClientName($invoice->fk_client)}}</td>
<td>{{date('Y/m/d', strtotime($invoice->date_creation))}}</td>
<td>{{$invoice->total}}</td>
Expand Down Expand Up @@ -114,7 +114,7 @@
<tbody>
@foreach(Invoice::get10DaysInvoices() as $invoice)
<tr>
<td>{{$invoice->facnumber}}</td>
<td><a href="{{URL::to('/invoice/'.$invoice->id)}}">{{$invoice->facnumber}}</a></td>
<td>{{Client::getClientName($invoice->fk_client)}}</td>
<td>{{date('Y/m/d', strtotime($invoice->date_creation))}}</td>
<td>{{$invoice->total}}</td>
Expand Down

0 comments on commit a5cb3fe

Please sign in to comment.