We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.1.62
11.36.1
8.3.17
When using WithMultipleSheets, only WithDefaultStyles, WithStyles on the outer class works.
WithMultipleSheets
WithDefaultStyles
WithStyles
// outer.php class DemoSheets implements WithMultipleSheets, WithDefaultStyles, WithStyles { public function sheets(): array { return [ new DemoTab() ]; } } // inner.php class DemoTab implements WithDefaultStyles, WithStyles { }
Can be reproduceable as descibed above.
The function styles and function defaultStyles in DemoSheets works, but the functions in DemoTab is never invoked.
function styles
function defaultStyles
DemoSheets
DemoTab
Styles in tabs can also work as that perform in single tab exporting process.
The text was updated successfully, but these errors were encountered:
Default styles are workbook styles, so for the entire spreadsheet, not per tab.
Sorry, something went wrong.
No branches or pull requests
Is the bug applicable and reproducable to the latest version of the package and hasn't it been reported before?
What version of Laravel Excel are you using?
3.1.62
What version of Laravel are you using?
11.36.1
What version of PHP are you using?
8.3.17
Describe your issue
When using
WithMultipleSheets
, onlyWithDefaultStyles
,WithStyles
on the outer class works.How can the issue be reproduced?
Can be reproduceable as descibed above.
The
function styles
andfunction defaultStyles
inDemoSheets
works, but the functions inDemoTab
is never invoked.What should be the expected behaviour?
Styles in tabs can also work as that perform in single tab exporting process.
The text was updated successfully, but these errors were encountered: