laravel excel utf8 problem in csv export

Solutions on MaxInterview for laravel excel utf8 problem in csv export by the best coders in the world

showing results for - "laravel excel utf8 problem in csv export"
Tyron
27 Jan 2020
1 CSV Settings
2        |--------------------------------------------------------------------------
3        |
4        | Configure e.g. delimiter, enclosure and line ending for CSV exports.
5        |
6        */
7        'csv'                    => [
8            'delimiter'              => ',',
9            'enclosure'              => '"',
10            'line_ending'            => PHP_EOL,
11            'use_bom'                => true, // before was false
12            'include_separator_line' => false,
13            'excel_compatibility'    => false,
14        ],
15