You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
394 B

1 year ago
@foreach($expense as $k=>$exp)
<tr>
<td scope="row">{{$k+1}}</td>
<td><label class="text-uppercase">{{$exp['type']}}</label></td>
<td><div >
{{\App\CentralLogics\Helpers::format_currency($exp['amount'])}}
</div></td>
<td><div>
{{$exp['description']}}
</div></td>
<td>{{$exp->created_at->format('Y-m-d '.config('timeformat'))}}</td>
</tr>
@endforeach