@extends('layouts.user') @section('head') @endsection @section('content')

{{__("Manage Seats")}}
{{__("Back to flight")}} $currentFlight->id]) }}" class="btn btn-success"> {{__("Add Seat")}}

@include('admin.message')
{{__("Add Flight Seat")}}
@csrf @include('Flight::admin.flight.seat.form')
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__("All Flight seat")}}
@if(count($rows) > 0) @foreach ($rows as $row) @endforeach @else @endif {{$rows->appends(request()->query())->links()}}
{{__("Flight id")}} {{__("Seat type")}} {{__("Price")}} {{__("Max passengers")}}
#{{$row->flight->id}} {{$row->seatType->name}} {{format_money($row->price)}} {{$row->max_passengers}} {{__('Edit')}}
{{__("No data")}}
@endsection @section('footer') @endsection