You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
261 B
18 lines
261 B
|
|
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Support\Facades\App;
|
|
use Illuminate\Http\Request;
|
|
|
|
class SetLang2
|
|
{
|
|
|
|
public function handle($request, Closure $next)
|
|
{
|
|
var_dump(112233);
|
|
return $next($request);
|
|
}
|
|
}
|
|
|