Created
June 28, 2023 16:04
-
-
Save leek/3a039ef7f3251592d1e6f984f2bb3448 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
{ | |
/** | |
* Define your route model bindings, pattern filters, and other route configuration. | |
*/ | |
public function boot(): void | |
{ | |
Route::pattern('id', '\d+'); | |
Route::pattern('hash', '[a-z0-9]+'); | |
Route::pattern('hex', '[a-f0-9]+'); | |
Route::pattern('uuid', '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'); | |
Route::pattern('base', '[a-zA-Z0-9]+'); | |
Route::pattern('slug', '[a-z0-9-]+'); | |
Route::pattern('username', '[a-z0-9_-]{3,16}'); | |
// ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment