@extends("cms.layouts.app", ['page_id' => 'shipping_index']) @push("css") @endpush @push("js") @endpush @section("title") Generate Invoice @endsection @section("content")
@php $country_options = ['1'=>'China','2'=>'Hong Kong','3' => 'Japan','4'=>'Korea','5'=>'USA']; @endphp {{ Form::select('country_option', array_merge(['0' =>'All Country'], $country_options), null, ['id' => 'country-option', 'class' => "text-status font-weight-600 form-control form-control-sm", 'style' => 'min-width: 100px;']) }}
@php $platforms_options = \App\Platform::all()->pluck('name', 'id')->toArray(); @endphp {{ Form::select('platforms_option', array_merge(['0' =>'All Platforms'], $platforms_options), null, ['id' => 'platform-option', 'class' => "text-status font-weight-600 form-control form-control-sm", 'style' => 'min-width: 100px;']) }}
@php $stores_options = \App\Store::where('platform_id',$platform)->where('status',1)->pluck('name', 'id')->toArray(); @endphp {{ Form::select('store_option', array_merge(['0' =>'All Stores'], $stores_options), null, ['id' => 'store-option', 'class' => "text-status font-weight-600 form-control form-control-sm", 'style' => 'min-width: 100px;']) }}
Product Barcode Product Name Sales Quantity Sales in KRW Total Sales in KRW
{{ Form::open(['route' => 'cms.analysts.marketing_import', 'method' => 'POST', 'id' => 'form_adjustment', 'files' => true]) }} @php $platforms_options = \App\Platform::all()->pluck('name', 'id'); @endphp
{{ Form::close() }}
@endsection