Skip to content

Instantly share code, notes, and snippets.

View zoltiecodes's full-sized avatar

Zoltie zoltiecodes

View GitHub Profile
@zoltiecodes
zoltiecodes / SetLanguageMiddleware.php
Created April 27, 2020 11:51
Set Laravel language automatically and save to cookies
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Cookie;
use Illuminate\Support\Facades\Lang;
use Illuminate\Support\Str;
class SetLanguageMiddleware