Horje
laravel route regular expression constraints Code Example
laravel route regular expression constraints
Route::get('user/{name}', function ($name) {
    //
})->where('name', '[A-Za-z]+');

Route::get('user/{id}', function ($id) {
    //
})->where('id', '[0-9]+');

Route::get('user/{id}/{name}', function ($id, $name) {
    //
})->where(['id' => '[0-9]+', 'name' => '[a-z]+']);
Source: laravel.com




Html

Related
how to add an html anchor Code Example how to add an html anchor Code Example
text -center bootstrap Code Example text -center bootstrap Code Example
Responsive container centered Code Example Responsive container centered Code Example
add html validation to mobile number Code Example add html validation to mobile number Code Example
link in md Code Example link in md Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8