Created
September 13, 2019 16:50
-
-
Save kennith/7c9d423c7714f95a2cb39b01552d1dba to your computer and use it in GitHub Desktop.
Laravel Excel Freeze Pane
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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