@foreach($rows as $key=> $row) @endforeach
{{ __('deliveries.name') }} {{ __('deliveries.morning_city_id') }} {{ __('deliveries.morning_area_id') }} {{ __('deliveries.night_city_id') }} {{ __('deliveries.night_area_id') }} {{ __('dashboard.created_at') }}
{{ $row->name }} @if(!is_null($row->morning_city_id)) {{ $row->morningcity->descriptions()->name }} @else {{__('dashboard.not_selected')}} @endif @if(!is_null($row->morning_area_id)) {{ $row->morningarea->descriptions()->name }} @else {{__('dashboard.not_selected')}} @endif @if(!is_null($row->night_city_id)) {{ $row->nightcity->descriptions()->name }} @else {{__('dashboard.not_selected')}} @endif @if(!is_null($row->night_area_id)) {{ $row->nightarea->descriptions()->name }} @else {{__('dashboard.not_selected')}} @endif {{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }}