Files
w4rpservices/resources/views/admin/dashboards/walletjournal.blade.php
2020-04-03 02:03:19 -05:00

25 lines
670 B
PHP

@extends('layouts.admin.b4')
@section('content')
<br>
<div class="container">
<table class="table table-striped">
<thead>
<th>Date</th>
<th>Description</th>
<th>Reason</th>
<th>Amount</th>
</thead>
<tbody>
@foreach($journal as $journ)
<tr>
<td>{{ $journ->date }}</td>
<td>{{ $journ->description }}</td>
<td>{{ $journ->reason }}</td>
<td>{{ number_format($journ->amount, 2, '.', ',') }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
@endsection