@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) @empty @endforelse
{{ __('app.noLot') }} {{ __('app.article') }} {{ __('app.designation') }} {{ __('app.nb_items') }} {{ __('app.dim1') }} {{ __('app.dim2') }} {{ __('app.dim3') }} {{ __('app.weight') }} {{ __('app.length') }} {{ __('app.date_entry') }} {{ __('app.nature2') }}
{{ __('app.noLot') }} {{ __('app.article') }} {{ __('app.designation') }} {{ __('app.nb_items') }} {{ __('app.dim1') }} {{ __('app.dim2') }} {{ __('app.dim3') }} {{ __('app.weight') }} {{ __('app.length') }} {{ __('app.date_entry') }} {{ __('app.nature2') }}
{{ $l->numero }} {{ $l->reference }} {{ $l->designation }} {{ $l->nb_items }} {{ round($l->dim1) }} {{ round($l->dim2) }} {{ round($l->dim3,1) }} {{ round($l->weight) }} {{ round($l->length) }} {{ Date::datefr($l->date,'timeform') }} {{ Helper::stockstatus($l->nature) }}
{{ __('app.no-result') }}
{!! Element::mainbloc('close') !!} @stop @section('footer') @stop