@extends("cms.layouts.app", ['page_id' => 'products_index'])
@push("js")
@endpush
@section("title")
{{ __('cms.sidemenu.product') }}
@endsection
@section("top_right")
@endsection
@section("content")
{{ __('cms.id')}} |
{{ __('cms.status')}} |
{{ __('cms.product.barcode') }} |
{{ __('cms.product.name_en')}} |
{{ __('cms.product.name_ja')}} |
{{ Form::open(['method' => 'POST', 'id' => "form-inactivate-item"]) }} {{ Form::close() }}
{{ Form::open(['route' => 'cms.products.import', 'method' => 'POST', 'id' => 'form_import', 'files' => true]) }}
{{ Form::fileUpload('upload_product_files', null, [
'multiple' => true,
'type' => 'document',
'accept' => '.xlsx, .xls, .csv',
]) }}
@php
$type = ['Product','ProductStock'];
$fields = [
[
'type' => 'select',
'name' => 'type',
'label' => 'Type',
'options' => $type,
// 'withAny' => '1'
],
];
@endphp
{{ Form::close() }}
@endsection