PHP code example of calamandrei-lorenzo / laravel-browser-lang

1. Go to this page and download the library: Download calamandrei-lorenzo/laravel-browser-lang library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

calamandrei-lorenzo / laravel-browser-lang example snippets



use CalamandreiLorenzo\LaravelBrowserLang\Http\Middleware\BrowserLang;

class Kernel extends HttpKernel
{
        /**
         * The application's route middleware.
         *
         * These middleware may be assigned to groups or used individually.
         *
         * @var array
         */
        protected $routeMiddleware = [
            // ...
            'detect-language' => BrowserLang::class
        ];
}

Route::middleware('detect-language')->group(static function () {
    // routes
});

class Kernel extends HttpKernel
{
    /**
     * The application's global HTTP middleware stack.
     *
     * These middleware are run during every request to your application.
     *
     * @var array
     */
    protected $middleware = [
        // ...
        BrowserLang::class
    ];
}