+ + Fares assigned to the current subfleet. These can be overridden, + otherwise, the value used is the default, which comes from the fare. +
+| {!! $atf->name !!} | {!! $atf->code !!} | {!! $atf->pivot->capacity !!} @@ -46,14 +47,16 @@ | {!! $atf->pivot->cost !!} ({!! $atf->cost!!}) |
-
- {!! Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/fares', 'method' => 'delete', 'class' => 'rm_fare']) !!}
- {!! Form::hidden('fare_id', $atf->id) !!}
- {!! Form::button('',
- ['type' => 'submit',
- 'class' => 'btn btn-danger btn-s']) !!}
- {!! Form::close() !!}
-
+ {!! Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/fares',
+ 'method' => 'delete',
+ 'class' => 'rm_fare'
+ ])
+ !!}
+ {!! Form::hidden('fare_id', $atf->id) !!}
+ {!! Form::button('',
+ ['type' => 'submit',
+ 'class' => 'btn btn-sm btn-danger btn-icon']) !!}
+ {!! Form::close() !!}
|
| Airline | @@ -25,14 +26,17 @@
{!! Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) !!}
-
-
-
- {!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
-
+
+
+
+
+ {!! Form::button('',
+ ['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon',
+ 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}
|
@endforeach
|---|