Exporting
'exportables' => [
'App\Products' => [ // Model name
'name' => 'Export products', // Text for the <option> in the <select> field
'type' => 'model', // Type (if you want to export a whole table (or all models) type should be "model"
'fields' => ['name', 'email', 'created_at'], // Which fields to export
'file_name' => 'user_list', // Name of exported file
'file_type' => 'xls', // File type (xls or csv)
],
],'exportables' => [
'custom_case' => [
'name' => 'custom', // Text for the <option> in the <select> field
'type' => 'custom', // Type
'case' => 'my_custom_export', // Case
'file_name' => 'custom', // Name for exported file
'file_type' => 'xls', // File type (xls or csv)
],
],Last updated