@extends("cms.layouts.app", ['page_id' => 'marketing'])
@push("css")
@endpush
@push("js")
@endpush
@section("title")
    Delivery Expenses Report
    @endsection
    @section("content")
    
      Processing...
    
    
    
        
            
            
                
                    
                     | 
                    Date | 
                    Platform | 
                    Deliver Expenses | 
                    
                
            
         
     
    
        {{ Form::open(['route' => 'cms.analysts.create_delivery', 'method' => 'POST', 'id' => 'data_input']) }}
    
            @php
    
                $fields = [
                   
                    [
                        'type' => 'select',
                        'name' => 'platform',
                        'label' => __('cms.order.platform'),
                        'options' => ['EMS','CJ'],
                        'value' => 'All',
                    ],
                    [
                        'type' => 'input',
                        'name' => 'date',
			'input_type' => 'date',
                        'label' => "Date",
                    ],
		    [
    			'type' => 'input',
                        'name' => 'amount',
			'input_type' =>'amount',
                        'label' => 'Amount',
                    ],
                ];
            @endphp
            
    
            
        {{ Form::close() }}
    
  
        {{ Form::open(['route' => 'cms.analysts.upload_delivery', 'method' => 'POST', 'id' => 'form_upload_excel', 'files' => true]) }}
            
                {{ Form::fileUpload('upload_marketing_file', null, [
                    'multiple' => true,
                    'type' => 'document',
                    'accept' => '.xlsx, .xls, .csv',
                ]) }}
            
    
            
    
        {{ Form::close() }}
    
   @endsection