@extends("cms.layouts.app", ['page_id' => 'analysts_sale']) @push("css") @endpush @push("js") @endpush @section("title") Sales Today @endsection @section("content")
@foreach ($tables as $table) @php $i = $loop->index; $class = $i == 0? 'show active' : ''; @endphp
@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;']) }}
{{ __('cms.picking.product_code')}} {{ __('cms.picking.product_sku')}} {{ __('cms.picking.product_barcode')}} {{ __('cms.picking.product_name')}} {{ __('cms.picking.product_name')}} {{ __('cms.order.qty')}} Return Qty Reduce Date Status
@endforeach
@endsection