tidying up use declarations and making new journal page for testing

This commit is contained in:
2018-12-13 23:16:22 -06:00
parent ce3493f595
commit 55e2667bdc

View File

@@ -13,10 +13,10 @@
<tbody>
@foreach($journal as $journ)
<tr>
<td>{{ $journ['date'] }}</td>
<td>{{ $journ['description'] }}</td>
<td>{{ $journ['reason'] }}</td>
<td>{{ $journ['amount'] }}</td>
<td>{{ $journ->date }}</td>
<td>{{ $journ->description }}</td>
<td>{{ $journ->reason }}</td>
<td>{{ $journ->amount }}</td>
</tr>
@endforeach
</tbody>