@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;'])
}}
{{
Form::select('date_option', [
'1' => 'Order Date',
'2' => 'Import Date',
], null, ['id' => 'date-option', 'class' => "text-status font-weight-600 form-control form-control-sm", 'style' => 'min-width: 100px;'])
}}
@if (!isset($status))
{{
Form::select('status', [
'0' => __('cms.all_statuses'),
'1' => __('cms.order.status.1'),
'2' => __('cms.order.status.2'),
'3' => __('cms.order.status.3'),
'4' => __('cms.order.status.4'),
'5' => __('cms.order.status.5'),
'6' => __('cms.order.status.6'),
'7' => __('cms.order.status.7'),
], null, ['class' => "text-status font-weight-600 form-control form-control-sm", 'style' => 'min-width: 200px;', 'plcaeholder' => __('cms.all_statuses')])
}}
@endif