@extends('picking.content') @section('status_content')
PRODUCTS
@foreach($order_products as $product_line)
{{ $product_line['location']?->bin_code }}
{{ $product_line['quantity'] }}
@php $disabled = ""; $tooltip = ""; if(!$product_line['product']->canBeCollected($product_line['quantity'], $order->branch_id)) { $disabled = "disabled"; $tooltip = '   '; } @endphp id}} data-product_id={{$product_line['product']->id}} {{ $product_line['product']->getOrderProductCollectedStatus($order->id) ? 'checked' : '' }} > @php echo $tooltip @endphp
@endforeach
@endsection @section('status_action') @include('picking.action_button') @endsection