-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
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
Custom CSV Settings #71
Comments
I haven't used CSV export yet, but it should be easy to add. |
Would be great if that can implemented |
Curious on which settings you are interested in? All of them? Do you want to set these per Export? Or why don't you overwrite the config file? |
Just need a simple TXT File Values TAB separated. For example:
|
@SDJeff I just ran into the same issue. I'm using this quick and dirty trick to overwrite the config on the fly. FilamentExcel\Actions\Tables\ExportBulkAction::make()
->before(function () {
config(
[
'excel.exports.csv' => [
'delimiter' => '\t',
'enclosure' => '',
]
]
);
}) Update: |
Check! Works like mentioned! Could be a workaround! Thx |
Would it be possible to support these in a future version?
https://docs.laravel-excel.com/3.1/exports/settings.html#custom-csv-settings
The text was updated successfully, but these errors were encountered: