@extends('Master') @section('content')

@lang('public.approved_received_orders')

@foreach ($Orders as $item) @endforeach
@lang('public.date') @lang('public.from') @lang('public.plate_number') @lang('public.customer_name') @lang('public.phone') @lang('public.cargo_type') @lang('public.booking_description') @lang('public.location') @lang('public.destination') @lang('public.Payment') @lang('public.reject')
{{ $item->created_at }} {{ $item->OrderingCompany->CompanyName }} {{ $item->Vehicle->PlateNumber }} {{ $item->CustomerName }} {{ $item->Phone }} {{ $item->CargoType }} @if ($item->CargoType=='heavy_cargo') {{ $item->cargo_name }}-{{$item->cargo_weight}} @lang('public.Tonnes') @elseif($item->CargoType=='passenger') {{ $item->adult_count }} @lang('public.Adult'), {{$item->child_count}} @lang('public.Children') @elseif($item->CargoType=='parcel') {{ $item->parcel_name }} @else {{ $item->special_request }} @endif {{ $item->Location }} {{ $item->Destination }} @lang('public.Payment') @lang('public.reject_order')
@endsection