Laravel Excel landscape page

2.9k Views Asked by At

I'm using Laravel-Excel to create excel files with Laravel. I need to set page orientation to landscape, But I can't find the solution in official documentation. By the way I'm using Blade to create excel file and this is my code.

class ExampleExcel implements FromView, WithEvents {

    public function view(): View {
        return view('excel.main');
    }

    public function registerEvents(): array {
        return [
            AfterSheet::class => function(AfterSheet $event) {
                $event->sheet->getDelegate()->setRightToLeft(true);
            },
        ];
    }

}

Thanks in advance!

2

There are 2 best solutions below

0
On BEST ANSWER

Consider adding BeforeSheet event like this.

return [
    BeforeSheet::class => function (BeforeSheet $event) {
        $event->sheet
            ->getPageSetup()
            ->setOrientation(\PhpOffice\PhpSpreadsheet\Worksheet\PageSetup::ORIENTATION_LANDSCAPE);
    },
];
0
On

You can use beforeSheet event to get spreadsheet object then in the event you can set orientation.

public static function beforeSheet(BeforeSheet $event)
{
    $event->sheet->getActiveSheet()->getPageSetup()
        ->setOrientation(\PhpOffice\PhpSpreadsheet\Worksheet\PageSetup::ORIENTATION_LANDSCAPE);
}

You can read more about events at https://docs.laravel-excel.com/3.0/exports/extending.html