@extends('layouts.main_without_top_button') @section('title') File Managers @stop @section('navigation') @stop @section('contentinner')
@include('operations.route_assignments.includes.profile')
{{--Tips: Hold Control key to select multiple items (Windows only).--}}

@foreach($loading_order_destination_route_assignments as $loading_order_destination_route_assignment) @endforeach
DESTINATION:{{$loading_order_destination_route_assignment->loadingOrderDestination->city->name}} , REF NO:{{$loading_order_destination_route_assignment->file_number}}
@foreach(\App\Model\Document::whereIn('type',['ALL', $loading_order_destination_route_assignment->loadingOrderDestination->loadingOrderItem->cargo_type]) ->whereNotIn('id',$loading_order_destination_route_assignment->loadingOrderDestination->loadingOrderItem->generalDocuments()->lists('document_id')) ->get() as $document)
@if(\App\Logistics\Facades\Vehicles::isDocumentated($loading_order_destination_route_assignment-> loadingOrderDestination->loadingOrderItem->id, $document->id))
@endif
@endforeach

@stop