Files
w4rpservices/resources/views/moons/admin/moonjournal.blade.php
drkthunder02 d52a339637 re-ordered all of the view directories
setup corp tax ratio for structure tax helper
modified all view functions for new directory layout
2019-02-13 21:07:21 -06:00

25 lines
670 B
PHP

@extends('layouts.b4')
@section('content')
<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