Answers for "laravel sql illegal collation"

PHP
0

laravel sql illegal collation

//laravel
fixed by adding 
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
to config/database.php under mysql2 connection (your mysql db connection)
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language