Files
w4rpservices/resources/views/admin/dashboards/walletjournal.blade.php

25 lines
674 B
PHP

@extends('layouts.b4')
@section('content')
<br>
<div class="container col-md-12">
<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