@extends('app.layouts.main') @section('header') @stop @section('content') @include('app.partials.breadcrumb') @include('app.partials.tabs') @include('app.partials.messages') {!! Element::mainbloc('open', __('app.view_inventory'), 'fas fa-table') !!}
@forelse($lots AS $l) @if(isset($l->totalweight)) @else @endif @empty @endforelse
{{ __('app.quantity_stock') }} {{ __('app.article') }} {{ __('app.designation') }} {{ __('app.nb_items') }} {{ __('app.dim1') }} {{ __('app.dim2') }} {{ __('app.dim3') }} {{ __('app.length') }} {{ __('app.weight_stock') }}
{{ __('app.quantity_stock') }} {{ __('app.article') }} {{ __('app.designation') }} {{ __('app.nb_items') }} {{ __('app.dim1') }} {{ __('app.dim2') }} {{ __('app.dim3') }} {{ __('app.length') }} {{ __('app.weight_stock') }}
{{ $l->total }} {{ $l->reference }} {{ $l->designation }} {{ $l->totalitems }} {{ round($l->dim1) }} {{ round($l->dim2) }} {{ round($l->dim3,1) }} {{ round($l->length*$l->total) }} {{ round($l->totalweight) }}{{ round($l->weight*$l->total) }}
{{ __('app.no-result') }}
{!! Element::mainbloc('close') !!} @stop @section('footer') @stop