Files
faveo/app/Http/Controllers/Common/ExcelController.php
RafficMohammed 67950fc78f fixes
2023-02-17 13:25:50 +05:30

22 lines
513 B
PHP

<?php
namespace App\Http\Controllers\Common;
use App\Exports\UserExport;
use App\Http\Controllers\Controller;
//use Excel;
use Exception;
use Maatwebsite\Excel\Facades\Excel;
class ExcelController extends Controller
{
public function export($filename, $data)
{
if (count($data) == 0) {
throw new Exception('No data');
}
//dd(Excel::download(new UserExport($data), $filename.'.'.'xls'));
return Excel::download(new UserExport(), $filename.'.'.'xls');
}
}