【すぐにできた!】Laravel8でログイン後のリダイレクト先を変更する。

Laravel8でAuthログイン後のリダイレクト先を変更してみた。

ちなみにデフォルトではdashbordに遷移するようになっていた。

参考↓
[Laravel Auth ログイン後のリダイレクト先をデフォルトから変更する リメイク編]https://qiita.com/miriwo/items/38255345ae9cea419908

リダイレクト先変更

では変更していこう!

app/Providers/RouteServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * The path to the "home" route for your application.
     *
     * This is used by Laravel authentication to redirect users after login.
     *
     * @var string
     */
    public const HOME = '/dashbord';

    /**
     * The controller namespace for the application.
     *
     * When present, controller route declarations will automatically be prefixed with this namespace.
     *
     * @var string|null
     */
    // protected $namespace = 'App\\Http\\Controllers';

    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @return void
     */
    public function boot()
    {
        $this->configureRateLimiting();

        $this->routes(function () {
            Route::prefix('api')
                ->middleware('api')
                ->namespace($this->namespace)
                ->group(base_path('routes/api.php'));

            Route::middleware('web')
                ->namespace($this->namespace)
                ->group(base_path('routes/web.php'));
        });
    }

    /**
     * Configure the rate limiters for the application.
     *
     * @return void
     */
    protected function configureRateLimiting()
    {
        RateLimiter::for('api', function (Request $request) {
            return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
        });
    }
}

Code language: HTML, XML (xml)

ここを修正したら良さそう。

public const HOME = '/dashbord'; //修正前

public const HOME = '/{リダイレクト先}'; //修正後
Code language: PHP (php)

ほい、これでログインしたら指定したリダイレクト先に遷移します!

まとめ

意外とすぐだったので、備忘録として…

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA