@include('pages.layout.flash_messages')
@include('components.breadCrumb.list',['path' => route('transportation-services.create'), 'excel_path'=>route('transportation-services.download-excel'), 'pdf_path'=>route('transportation-services.download-pdf'),'section' => __('Transportation services'),'permssion' => 'transportation_services.manage']) {!! Form::open(['route'=>['transportation-services.index'], 'method'=>'get']) !!}
{!! Form::submit(__('Search ..'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@forelse ($services as $service) @empty
{{__("No entry found")}}
@endforelse
{{__("ID")}} {{__("NAME")}} {{__("Image")}} {{__("Price")}} {{__("CREATION DATE")}} {{__("Status")}} {{__("Action")}}
{{$service->name}}
@if($service->image) user1 @else user1 @endif
{{ $service->price }} {{$service->created_at->format('Y-m-d')}}
@if($service->active) {{ __('Active') }} @else {{ __('In-active') }} @endif
{{ __('Edit') }}
@csrf @method('DELETE')
{{ $services->appends(Request::only(['search','status']))->links("pagination::bootstrap-4") }}