@extends('admin.layouts.app') @section('content')

{{__("Seat Type: :name",['name'=>@$row->code])}}

@include('admin.message')
{{__("Add Seat Type")}}
@csrf @include('Flight::admin.seatType.form')
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__("All")}}
@if(count($rows) > 0) @foreach ($rows as $row) @endforeach @else @endif {{$rows->appends(request()->query())->links()}}
{{__("Name")}} {{__("Date")}}
{{$row->name}} {{ display_date($row->updated_at)}} {{__('Edit')}}
{{__("No data")}}
@endsection