@extends('app') @section('content')

Modifier le bon de réception

@if(Session::has('msgAjouter'))
{!! session('msgAjouter') !!}
@endif @if(Session::has('msgExist'))
{!! session('msgExist') !!}
@endif
{!! Form::open(['method'=>'PUT','action' => ['BonReceptionControlleur@postFormEdit', $bonReception->id_bon_reception]]) !!}







@foreach( $lignesBonReception as $ligneBonReception) @endforeach
Référence produit Désignation Quantité commandée Reste à recevoir Qantité réceptionner Modifier la quantité à réceptioner Supprimer ce produit du bon de réception
{{$ligneBonReception->ligneCommandeFournisseur->produit->reference}} {{$ligneBonReception->ligneCommandeFournisseur->produit->designation}} {{$ligneBonReception->quantite_commander}} {{$ligneBonReception->quantite_reste_receptionnee - $ligneBonReception->quantite_receptionner}} {{$ligneBonReception->quantite_receptionner}}
{!! Form::close() !!}
@foreach( $lignesBonReception as $ligneBonReception)
@endforeach
@endsection