format('d.m.Y - H:i') . ' - users.xlsx'); } public function ExportFolders() { return Excel::download(new FoldersExport(), Carbon::now()->format('d.m.Y - H:i') . ' - folders.xlsx'); } public function ExportFiles() { return Excel::download(new FilesExport(), Carbon::now()->format('d.m.Y - H:i') . ' - files.xlsx'); } public function ExportDepartments() { return Excel::download(new DepartmentsExport(), Carbon::now()->format('d.m.Y - H:i') . ' - departments.xlsx'); } }