Laravel provides localization features, which allow you to easily provide translations for your application. This project is an example of how to implement multiple language in Laravel using Inertia JS and React JS.
Source code : GitHub
Clone the repository
git clone https://github.com/raprmdn/laravel-multi-languageGo to the project directory
cd laravel-multi-languageInstall dependencies
# composer
composer install
# npm
npm installCopy .env.example to .env
cp .env.example .envGenerate application key
php artisan key:generateRun migration
php artisan migrateRun the application
# Start the development server
php artisan serve
# Inertia JS
npm run dev
