@extends('picking.head') @section('content')

In Progress

@if(count($inprogress_myorders) > 0 ) @php $branch_id = Auth::user()->branch->id; @endphp
@foreach ($inprogress_myorders as $inprogress_order)
id}} data-order_status={{$inprogress_order->order_state_id}}>
Order {{$inprogress_order->code}}
{{ date("Y/m/d H:i:s", strtotime($inprogress_order->creation_date)) }}
{{ strtoupper($inprogress_order->boShippingType->name) }}    @if ($inprogress_order->isDeliveryNoScheduled()) @endif
Customer: {{ $inprogress_order->client->first_name }} ({{ $inprogress_order->client->document }})
Address: {{ $inprogress_order->address?->direction }}
@if ($inprogress_order->instructions)

Pick & Pack notes:

{{ str_limit($inprogress_order->instructions, $limit = 40, $end = '...') }}

@endif
@endforeach
@else @endif @endsection