@extends('layouts.master') @section('content')
@if(Session::has('message'))

{{Session::get('message')}}

@endif
@foreach($liste_detail_mouvement_stock as $key=>$p) @endforeach
No Code Nom Reference Quantite PU Status Action
{{++$key}} {{$p->code_piece}} {{$p->nom_piece}} {{$p->reference_piece}} {{$p->quantite_detail}} {{$p->pu_detail}} @if($p->status_detail == 0) Rejected @elseif($p->status_detail == 1) Encours @else Approved @endif @if($p->status_detail == 1) Edit Approved Rejected @endif Details
@endsection @section('page-script') @stop