Skip to content

Instantly share code, notes, and snippets.

@maksimerohin
Last active June 11, 2022 05:30
Show Gist options
  • Save maksimerohin/df3437398e26188f31158e483fb266e8 to your computer and use it in GitHub Desktop.
Save maksimerohin/df3437398e26188f31158e483fb266e8 to your computer and use it in GitHub Desktop.
/*
/-------------------
/ app/Enums/Role.php
/-------------------
*/
namespace App\Enums;
enum Role: string
{
case User = 'user';
case Admin = 'admin';
}
/*
/-------------------
/ routes/web.php
/-------------------
use App\Enums\Role;
Route::get('/users/{role}', function(Role $role) {
return $role->value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment