EG
Size: a a a
EG
N
N
Gt
🎃
🎃
Gt
🎃
Gt
🎃
Route::get('cool/{any}/{product}', 'TestController@cool')->name('cool')->where([
'any' => '.*',
'product' => '[0-9]+'
]);
return route('cool', ['asd/qwe/bmx', 35]);
public function cool($slug, Product $product)
{
dd($slug, $product->id);
}
jk
Gt
🎃
jk
AP