- Timestamp:
- 10/24/21 13:12:30 (3 years ago)
- Branches:
- develop, master
- Children:
- 8c71900
- Parents:
- 5e56e8a
- Location:
- app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Exports/UsersExport.php
r5e56e8a r0208bbd 31 31 $row->where('id', $row->created_by)->pluck('username')->first(), 32 32 $row->created_at, 33 $row->updated_at 33 $row->updated_at, 34 $row->avatar, 34 35 ]; 35 36 return $fields; … … 49 50 'Created by', 50 51 'Created at', 51 'Updated at' 52 'Updated at', 53 'Avatar' 52 54 ]; 53 55 } -
app/Http/Controllers/Dashboard/IndexController.php
r5e56e8a r0208bbd 41 41 "excelExt" => array("xls", "xlsx", "xls", "csv"), 42 42 "textExt" => array("txt", "doc", "docx"), 43 "imageExt" => array("png", "jpg", "jpeg") ,43 "imageExt" => array("png", "jpg", "jpeg") 44 44 45 45 ]);
Note:
See TracChangeset
for help on using the changeset viewer.