Streamit Laravel - Documentation

How to Set the Default Language for the Admin Panel?

This guide explains how to change the default system language of the Streamit Admin Panel.

By default, the language is set to English (en). If you want to change it to another language (for example, French), follow the steps below.


🛠 Steps to Change the Default Language

Step 1: Open Project Files

Go to your Streamit Laravel project directory on the server.

Step 2: Locate the Configuration File

Open the following file:

config -> app.php

Step 3: Update the Locale Value

Find this line in the file:

'locale' => 'en',

Change it to your preferred language code.

Example (French):

'locale' => 'fr',

Step 4: Save the File

After updating the language code, save the file.

The Admin Panel will now use the new default language.


⚠️Important Notes

  • You only need to change the locale value
  • No separate array or additional configuration is required
  • Make sure the selected language translation files are already available in the system