Changing main Laravel locale
# ❓questions
j
Hi, i changed my locale from en to nl in my config/app.php and now all my page links give a 404 and creating new pages results in no column row in the page_slugs table for that page. Any idea what im doing wrong?
i
change your twill.locale to nl too
j
in config/twill.php right?
Copy code
return [
    /*
    |--------------------------------------------------------------------------
    | When a singleton is not seeded, you can use this flag to automatically seed it.
    |--------------------------------------------------------------------------
    */
    'locale' => 'nl',
...  rest of the file
slug in the cms is also gone, and in the database the locale stays en in my pages table
Do i have to manually change the table rows? Because when i create a new page it works now
h
yes, changing the locale wont migrate your db
j
Oke thx, ill keep that in mind for next time 😛