@php
foreach ($markets as $key => $market) {
$exist = false;
foreach ($stores as $key => $store) {
if($market->store == $store){
$exist = true;
}
}
if(!$exist){
array_push($stores, $market->store);
}
}
@endphp
{!! Form::open(['id'=>'importExcel','class'=>'ajax-form','method'=>'POST']) !!}
Hoja de Pedido
Subir Fichero
{!! Form::close() !!}
{!! $dataTable->table(['class' => 'table table-bordered table-hover toggle-circle default footable-loaded footable']) !!}