Skip to content

Instantly share code, notes, and snippets.

@kennith
Created September 13, 2019 16:50
Show Gist options
  • Select an option

  • Save kennith/7c9d423c7714f95a2cb39b01552d1dba to your computer and use it in GitHub Desktop.

Select an option

Save kennith/7c9d423c7714f95a2cb39b01552d1dba to your computer and use it in GitHub Desktop.
Laravel Excel Freeze Pane
<?php
class User implements WithEvents
{
public function registerEvents(): array
{
return [
AfterSheet::class => function(AfterSheet $event) {
$event->sheet->freezePane('B1');
},
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment