Fix saving of fare #621 (#624)

This commit is contained in:
Nabeel S
2020-03-06 16:54:53 -05:00
committed by GitHub
parent 632c5782de
commit 2846a78d2a
13 changed files with 108 additions and 94 deletions

View File

@@ -2,6 +2,7 @@
<thead>
<th>Code</th>
<th>Name</th>
<th>Type</th>
<th>Price</th>
<th>Cost</th>
<th>Notes</th>
@@ -13,6 +14,7 @@
<tr>
<td><a href="{{ route('admin.fares.edit', [$fare->id]) }}">{{ $fare->code }}</a></td>
<td>{{ $fare->name }}</td>
<td>{{ \App\Models\Enums\FareType::label($fare->type) }}</td>
<td>{{ $fare->price }}</td>
<td>{{ $fare->cost }}</td>
<td>{{ $fare->notes }}</td>