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

{{__("Airport Transportation Price")}}

@include('admin.message')
@if (isset($airportTransportationPriceFind->id))
{{__("Edit Airport Transportation Price")}}
@else
{{__("Add Airport Transportation Price")}}
@endif
@csrf @include('Car::admin.car.airportTransportationPrices',['parents'=>$rows,'CarSeat'=>$CarSeat])
@if(!empty($rows))
{{csrf_field()}}
@endif
@if( count($airportTransportationPrice) > 0) @foreach ($airportTransportationPrice as $row) @endforeach @else @endif
{{__("Airport")}} {{__("Type Class")}} {{__("Car Seats")}} {{__("Price")}} {{__("Date")}}
{{$row->Airport->name ?? ''}} {{$row->TypeClass->name ?? ''}} {{$row->CarSeat->seat ?? ''}} {{$row->price}} {{display_date($row->updated_at)}} {{__('Edit')}}
{{__("No data")}}
@endsection @push('js') @endpush