{!! Form::open(['url' => action([\Modules\IntegrationHub\Http\Controllers\ExportController::class, 'store']), 'method' => 'post']) !!}
{!! Form::label('dataset', __('integrationhub::lang.dataset') . ':') !!}
@php
$datasetOptions = [];
foreach ($datasets as $ds) {
$datasetOptions[$ds] = __('integrationhub::lang.'.$ds);
}
@endphp
{!! Form::select('dataset', $datasetOptions, 'sales_summary', ['class' => 'form-control select2', 'style' => 'width:100%']) !!}
{!! Form::label('format', __('integrationhub::lang.format') . ':') !!}
{!! Form::select('format', array_combine($formats, array_map('strtoupper', $formats)), 'json', ['class' => 'form-control']) !!}
{!! Form::label('start_date', __('integrationhub::lang.start_date') . ':') !!}
{!! Form::text('start_date', null, ['class' => 'form-control datepicker', 'readonly']) !!}
{!! Form::label('end_date', __('integrationhub::lang.end_date') . ':') !!}
{!! Form::text('end_date', null, ['class' => 'form-control datepicker', 'readonly']) !!}
{!! Form::close() !!}