Conveyance Providers

@if ($canAdd) @endif
@if (session('success'))
Success! {{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Conveyances List
@if ($conveyances->count() == 0) @else @foreach ($conveyances as $conveyance) @php // Get the conveyance types using the service $conveyanceTypes = $conveyanceService->getConveyanceTypesByIds($conveyance->conveyance_type_id); @endphp @endforeach @endif
Vehicle & Capacity Owner Phone
No Conveyance found
@if(isset($conveyanceTypes)) {{ $conveyanceTypes }} @else No conveyance types @endif {{ $conveyance->owner_name }} {{ $conveyance->owner_phone }} @if ($canEdit) Edit @endif @if ($canDelete) Delete @endif