海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
426 B

  1. <?php
  2. namespace App\AdminSupplier\Extensions;
  3. use App\Exports\ProductExport;
  4. use Dcat\Admin\Admin;
  5. use Dcat\Admin\Grid\Exporters\AbstractExporter;
  6. use Maatwebsite\Excel\Facades\Excel;
  7. /**
  8. * Excel导出功能
  9. */
  10. class ProductToExcelExporter extends AbstractExporter
  11. {
  12. public function export()
  13. {
  14. return Excel::download(new ProductExport(Admin::user()->id), '导出产品-' . date('Y-m-d H:i:s') . '.xlsx')->send();
  15. }
  16. }