diff --git a/resources/views/admin/aircraft/show.blade.php b/resources/views/admin/aircraft/show.blade.php index 44f14327..75f8df21 100644 --- a/resources/views/admin/aircraft/show.blade.php +++ b/resources/views/admin/aircraft/show.blade.php @@ -12,23 +12,6 @@
@include('admin.aircraft.show_fields')
-
-
-
-
-

fares

-
-
-    - Fares assigned to the current aircraft. These can be overridden, - otherwise, the value used is the default, which comes from the fare. -
- @include('admin.subfleets.fares') -
-
-
-
-
@endsection @section('scripts') diff --git a/resources/views/admin/aircraft/table.blade.php b/resources/views/admin/aircraft/table.blade.php index 03fcf1ed..9f92bc95 100644 --- a/resources/views/admin/aircraft/table.blade.php +++ b/resources/views/admin/aircraft/table.blade.php @@ -4,7 +4,7 @@ Name Registration Active - Actions + Actions @foreach($aircraft as $ac) @@ -24,10 +24,10 @@ - + {!! Form::open(['route' => ['admin.aircraft.destroy', $ac->id], 'method' => 'delete']) !!}
- + {{----}} {!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
diff --git a/resources/views/admin/airlines/table.blade.php b/resources/views/admin/airlines/table.blade.php index 60ad4052..76db1956 100644 --- a/resources/views/admin/airlines/table.blade.php +++ b/resources/views/admin/airlines/table.blade.php @@ -2,16 +2,19 @@ Code Name - Active? - Action + Active + Action @foreach($airlines as $al) {!! $al->code !!} {!! $al->name !!} - {!! $al->active !!} - + + + + {!! Form::open(['route' => ['admin.airlines.destroy', $al->id], 'method' => 'delete']) !!}
diff --git a/resources/views/admin/airports/table.blade.php b/resources/views/admin/airports/table.blade.php index 689fd2c9..84f91975 100644 --- a/resources/views/admin/airports/table.blade.php +++ b/resources/views/admin/airports/table.blade.php @@ -7,7 +7,7 @@ 100LL JetA MOGAS - Action + Action @foreach($airports as $airport) @@ -24,7 +24,7 @@ {!! $airport->fuel_mogas_cost !!} - + {!! Form::open(['route' => ['admin.airports.destroy', $airport->id], 'method' => 'delete']) !!}
diff --git a/resources/views/admin/flights/table.blade.php b/resources/views/admin/flights/table.blade.php index 1b778c13..3435c7ed 100644 --- a/resources/views/admin/flights/table.blade.php +++ b/resources/views/admin/flights/table.blade.php @@ -7,14 +7,14 @@ Dpt Time Arr Time Notes - Active - Action + Active + Action @foreach($flights as $flight) - + {!! $flight->airline->code !!}{!! $flight->flight_number !!} @if($flight->route_code) (C: {!! $flight->route_code !!} L: {!! $flight->route_leg !!}) @@ -32,11 +32,14 @@ {!! $flight->dpt_time !!} {!! $flight->arr_time !!} {!! $flight->notes !!} - {!! $flight->active !!} - + + + + {!! Form::open(['route' => ['admin.flights.destroy', $flight->id], 'method' => 'delete']) !!}
- {{----}} + {!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
diff --git a/resources/views/admin/menu.blade.php b/resources/views/admin/menu.blade.php index e32e9565..f4a8aa84 100644 --- a/resources/views/admin/menu.blade.php +++ b/resources/views/admin/menu.blade.php @@ -15,5 +15,5 @@
  •  airlines
  •  airports
  • {{--
  •  aircraft classes
  • --}} -
  •  users
  • +
  •  users
  •  ranks
  • diff --git a/resources/views/admin/ranks/table.blade.php b/resources/views/admin/ranks/table.blade.php index 29053ddd..8315c128 100644 --- a/resources/views/admin/ranks/table.blade.php +++ b/resources/views/admin/ranks/table.blade.php @@ -3,20 +3,29 @@ Name Hours - Auto Approve Acars - Auto Approve Manual - Auto Promote - Action + Auto Approve Acars + Auto Approve Manual + Auto Promote + Action @foreach($ranks as $rank) {!! $rank->name !!} {!! $rank->hours !!} - {!! $rank->auto_approve_acars !!} - {!! $rank->auto_approve_manual !!} - {!! $rank->auto_promote !!} - + + + + + + + + + + {!! Form::open(['route' => ['admin.ranks.destroy', $rank->id], 'method' => 'delete']) !!}
    {{--