Is that possible to make route
that accept string parameter only for specific string? Example :
Route::get('{user_tipe}/event', 'admin\EventC@index');
That the route, I want to make the user_tipe
param is only allow to two string like admin
and author
. Is that possible?