@extends('layouts.LayoutMaster') @section('content') @include('_partials.alerts')
Ajouter des produits
@csrf

+
Ajouter

list des produit :
    @foreach (session()->get('in_cart', []) as $cartItem )
  • {{$cartItem['quantity']}} X {{$cartItem['name']}}
  • @endforeach


@if (session()->get('in_cart', []) !== [])

Create a New InboundDeliveryNote

@csrf @include('inbound-delivery-note.form')
Create

@endif @endsection