Shipment Type
@if (Session::has('success'))
{{ Session::get('success') }}
@endif

@foreach ($shipments as $shipment) @endforeach
S.No Country Vehicle Type Vehicle Sizes Shipment Type Coverage Area From Country To Country From City To City Charges Action
{{ $loop->iteration }} @if($shipment->country =='1') SAUDI ARABIA @elseif($shipment->country =='2') UAE @endif {{ $shipment->vehicleType->name }} {{ $shipment->vehicleTypeSize->name }} {{ $shipment->name }} {{ ucfirst($shipment->area_type) }} @if($shipment->from_country =='1') SAUDI ARABIA @elseif($shipment->from_country =='2') UAE @endif @if($shipment->to_country =='1') SAUDI ARABIA @elseif($shipment->to_country =='2') UAE @endif {{ $shipment->from ?? 'NA' }} {{ $shipment->to ?? 'NA' }} {{ $shipment->charge }} {{-- --}}