라라벨/NOVA

(package) nova Actions excel export(엑셀 추출)

땀모 2020. 1. 7. 04:58

1. 패키지 설치

1
composer require maatwebsite/laravel-nova-excel

cs



2. 해당 Nova/User.php actions 인스턴스 추가하기

1
2
3
4
5
6
    public function actions(Request $request)
    {
        return [
            new DownloadExcel,
        ];
    }
cs


3. 해당 페이지에서 다운로드를 받는다.