@foreach($trashed as $subfleet) @endforeach
Name Airline Type Hub Aircraft Deleted Actions
{{ $subfleet->name }} {{ optional($subfleet->airline)->name }} {{ $subfleet->type }} {{ $subfleet->hub_id }} {{ $subfleet->aircraft->count() }} {{ $subfleet->deleted_at->diffForHumans() }} {{ Form::open(['route' => ['admin.subfleets.trashbin'], 'method' => 'post']) }} {{ Form::hidden('object_id', $subfleet->id) }} {{ Form::button(' RESTORE', ['type' => 'submit', 'name' => 'action', 'value' => 'restore', 'class' => 'btn btn-sm btn-success btn-icon']) }} {{ Form::button(' DELETE', ['type' => 'submit', 'name' => 'action', 'value' => 'delete', 'class' => 'btn btn-sm btn-danger btn-icon', 'onclick' => "return confirm('Are you REALLY sure?')"]) }} {{ Form::close() }}