@extends('adminlte::page') @section('title', __('products.tab-title')) @section('content_header')
- Zamijeniti - Pokupiti - Vratiti - Oboje
@stop @section('content')
@if(count($working_orders) == 0)
Nema pripremljenih radnih naloga.
@endif @foreach($working_orders as $working_order)
Radni nalog br.: {{$working_order->number}}
@switch($working_order->status) @case(0) Započni @break @case(1) Završi @break @case(2) Radni nalog završen @break @default @endswitch
Napomena: {{$working_order->remark}}
@foreach($working_order->locations as $wo_location)
{{ mb_strtoupper($wo_location->location->name) }}

{{ $wo_location->location->address.', '.$wo_location->location->city }}
{{ $wo_location->location->contact_number }}
{{ $wo_location->location->getTodayWorkHours() }}
Potrebno: {{__('delivery.needs-todo.'.$wo_location->needs)}}

@endforeach
@endforeach
@stop @section('footer') @include('delivery.modals.confirm') @include('delivery.modals.productsInfo') @include('layouts.error-modal') @append @push('css') @endpush @push('js') @php $url = url()->current(); @endphp {{-- Add inline js when developing or testing here. When you're finished, transfer to products.js --}} @endpush