LoginSignup
0
0

More than 5 years have passed since last update.

LaravelのRouteパラメータにバリデーションをつけたいとき

Posted at

https://laravel.com/docs/5.6/routing#route-parameters のRegular Expression Constraints

Route::get('/admin/{role}', function ($role) {
    $list = Admin::all();
    return view('list', [
        "list" => $list,
        "role" => $role
    ]);
})->where("role","(admin|user)");

PHPで書く場合

Route::get('/admin/{role}', function ($role) {
    if(!in_array($role,[
        "admin",
        "user"
    ])){
        abort(404);
    }
    $list = Admin::all();
    return view('list', [
        "list" => $list,
        "role" => $role
    ]);
});
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0