Laravelで現在のURLパスを取得する方法
Requestインスタンスを使用する方法:use Illuminate\Http\Request; // ルートハンドラー内で public function handle(Request $request) { $currentPath = $request->path(); // $currentPathには現在のURLパスが格納されます }>>More
Requestインスタンスを使用する方法:use Illuminate\Http\Request; // ルートハンドラー内で public function handle(Request $request) { $currentPath = $request->path(); // $currentPathには現在のURLパスが格納されます }>>More