Slide 20
Slide 20 text
Router methods
Route::get('/hello', $callable);
Route::post('/hello', $callable);
Route::put('/hello', $callable);
Route::patch('/hello', $callable);
Route::delete('/hello', $callable);
Route::options('/hello', $callable);
Route::any('/hello', $callable);
Route::match(['get', 'post'], '/hello', $callable);
Route::redirect('/bonjour', '/hello', 301);
Route::view('/hello', 'route-name');
Rob Allen ~ @akrabat | Gary Hockin ~ @geeh