Я использую Request :: path () в \ rout \ web. php, как следует, и посещение '/ home / test / test1' сработало хорошо, т. Е. Путь показан на веб-сайте.
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
Route::get('/home/test/test1', function(){
echo Request::path();
});
Однако, когда я сделал это в \ app \ Http \ Middleware, появилась ошибка "Class 'App \ Http \ Middleware \ Request' not found".
<?php
namespace App\Http\Middleware;
use Closure;
class CheckAuth
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$path = Request::path();
return $next($request);
}
}