Posts by zed • 1 point
1 post
-
-2
votes1
answer39
viewsQ: Location of a variable
Route::get('/', function () { return view('welcome'); }); Route::view('/teste', 'teste'); Route::get('/noticia/{slug}', function($slug){ if($slug != null): Route::redirect('noticia/{$slug}', '/');…