@extends('layouts.LayoutMaster') @section('content') @include('_partials.alerts')
Bon de ramassage
REF N° :
{{$inboundDeliveryNote->ref}}
Client :
{{$inboundDeliveryNote->client->name}}
Telephone :
{{$inboundDeliveryNote->phone}}
Status :
{{$inboundDeliveryNote->statusName()}}
Address :
{{$inboundDeliveryNote->address}}
Ville :
{{$inboundDeliveryNote->city->name}} ({{$inboundDeliveryNote->city->zone->name}})
@if ($inboundDeliveryNote->isWaiting() && Auth::user()->hasRole('picker'))
@endif
@if (Auth::user()->hasRole('client') && ($inboundDeliveryNote->isPending() || $inboundDeliveryNote->isWaiting()))
Ajouter des produits
@csrf

+
Ajouter
@endif
Bon de ramassage
@if (Auth::user()->hasRole('logistics')) @endif @foreach ($idnProducts as $product) @if (Auth::user()->hasRole('logistics')) @endif @endforeach
Id Nom QuantitéQuantité réelAction
{{$product->id}} {{$product->name}} {{$product->pivot->quantity}} @if (!$product->pivot->is_valid)
@csrf
@else {{$product->pivot->real_quantity}} @endif
@if (Auth::user()->hasRole('client')) @endif
@endsection @section('page-script') @endsection