17 lines
358 B
PHP
17 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
use App\Exports\ProductsExport;
|
|
|
|
class ProductExportController extends Controller
|
|
{
|
|
public function __invoke()
|
|
{
|
|
// throw new \Exception('Not implemented');
|
|
return Excel::download(new ProductsExport(), 'products.xlsx');
|
|
}
|
|
}
|