@extends('admin.layouts.app') @section('extra-css') @endsection @section('content')

{{__('admin.truck-widths')}}

@can('create_truck_widths') @endcan
@foreach($truckWidths as $truckWidth) @endforeach
{{__('admin.id')}} {{__('admin.width')}} {{__('admin.kilo_price')}} {{__('admin.created_at')}} {{__('admin.more')}}
{{$truckWidth->id}} {{$truckWidth->width}} {{$truckWidth->kilo_price}} {{Carbon\Carbon::parse($truckWidth->created_at)->locale('ar')->translatedFormat('l dS F G:i - Y')}}
@can('edit_truck_widths') @endcan @can('delete_truck_widths') @endcan
{{$truckWidths->withQueryString()->links('admin.pagination.bootstrap-4')}}
@endsection @section('extra-js') @endsection @section('modal') @component('admin.layouts.includes.modal') @slot('modalID') deleteModal @endslot @slot('modalTitle') {{__('admin.delete-data')}} @endslot @slot('modalMethodPutOrDelete') @method('delete') @endslot @slot('modalContent')
{{__('admin.delete-message-confirm')}}
@endslot @endcomponent @endsection