@foreach($deliveries as $key=> $row)
{{ $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') }} @if($row->deleted_at) {{ __('dashboard.restore') }} {{ __('dashboard.delete') }} @else {{ __('dashboard.edit') }} {{ __('dashboard.edit') }} {{ __('dashboard.trash') }} @endif @endforeach @if( count( $deliveries ) && $deliveries->hasPages() ) {{ $deliveries->links() }} @endif