Skip to content

Commit

Permalink
Add missing base fare values from template (#1302)
Browse files Browse the repository at this point in the history
Add missing base fare values

Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com>
  • Loading branch information
FatihKoz and nabeelio committed Sep 8, 2021
1 parent 226ae6d commit 91f928e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions resources/views/admin/flights/fares.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,15 @@ class="table table-hover"
<td style="text-align: center;">{{ $atf->code }}</td>
<td>
<a href="#" data-pk="{{ $atf->id }}" data-name="capacity">{{ $atf->pivot->capacity }}</a>
<span class="small background-color-grey-light">({{ $atf->capacity }})</span>
</td>
<td>
<a href="#" data-pk="{{ $atf->id }}" data-name="price">{{ $atf->pivot->price }}</a>
<span class="small background-color-grey-light">({{ $atf->price }})</span>
</td>
<td>
<a href="#" data-pk="{{ $atf->id }}" data-name="cost">{{ $atf->pivot->cost }}</a>
<span class="small background-color-grey-light">({{ $atf->cost }})</span>
</td>
<td style="text-align: center; width:3%;">
{{ Form::open(['url' => '/admin/flights/'.$flight->id.'/fares',
Expand Down

0 comments on commit 91f928e

Please sign in to comment.