58 lines
1.3 KiB
PHP
Executable File
58 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Admin\Http\Controllers;
|
|
|
|
use Excel;
|
|
use Webkul\Admin\Exports\DataGridExport;
|
|
|
|
class ExportController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('admin');
|
|
}
|
|
|
|
/**
|
|
* Export datagrid.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function export()
|
|
{
|
|
$criteria = request()->all();
|
|
|
|
$format = $criteria['format'];
|
|
|
|
$gridName = explode('\\', $criteria['gridName']);
|
|
|
|
$path = '\Webkul\Admin\DataGrids' . '\\' . last($gridName);
|
|
|
|
$gridInstance = app($path);
|
|
|
|
$records = $gridInstance->export();
|
|
|
|
if (! count($records)) {
|
|
session()->flash('warning', trans('admin::app.export.no-records'));
|
|
|
|
return redirect()->back();
|
|
}
|
|
|
|
if ($format == 'csv') {
|
|
return Excel::download(new DataGridExport($records), last($gridName) . '.csv');
|
|
}
|
|
|
|
if ($format == 'xls') {
|
|
return Excel::download(new DataGridExport($records), last($gridName) . '.xlsx');
|
|
}
|
|
|
|
session()->flash('warning', trans('admin::app.export.illegal-format'));
|
|
|
|
return redirect()->back();
|
|
}
|
|
}
|