@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.lots_liste'), 'fas fa-table') !!}
{!! Twb::admin_text('last_name',__('app.scan_lot'),"",['id' => 'scan','focus' => 'focus']) !!}
{!! Form::open(['route' => ['post.delete.lots'], 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'main_form', 'files' => true]) !!}
@foreach($lots AS $l) @endforeach
- {{ __('app.lot_number') }} {{ __('app.item') }} {{ __('app.depot') }} {{ __('app.customer') }} {{ __('app.status') }}
- {{ __('app.lot_number') }} {{ __('app.item') }} {{ __('app.depot') }} {{ __('app.customer') }} {{ __('app.status') }}
{{ $l->numero }} {{ $l->reference }} {{ $l->depot_code_divalto }} {{ $l->customer }} {{ Helper::stockstatus($l->nature) }}
{!! Form::hidden('formtype','1') !!}
{!! Form::button(__('app.delete_lots'), ['type' => 'button','','class' => 'btn btn-block btn-lg btn-danger','id' => 'validForm1' ]) !!}
{!! Form::close() !!} {!! Element::mainbloc('close') !!} @stop @section('footer') @stop