- Timestamp:
- 10/23/21 04:03:46 (3 years ago)
- Branches:
- develop, master
- Children:
- b39afb5
- Parents:
- c6b84df
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Http/Controllers/Dashboard/ExportExcelController.php
rc6b84df r4b7e2d3 3 3 namespace App\Http\Controllers\Dashboard; 4 4 5 use App\Exports\DepartmentsExport; 5 6 use App\Exports\FilesExport; 6 7 use App\Exports\FoldersExport; … … 32 33 33 34 } 35 36 public function ExportDepartments() 37 { 38 return Excel::download(new DepartmentsExport(), Carbon::now()->format('d.m.Y - H:i') . ' - departments.xlsx'); 39 40 } 41 34 42 }
Note:
See TracChangeset
for help on using the changeset viewer.