101 - Getting Started with Laravel Dusk

This commit is contained in:
Adam Wathan
2017-05-02 15:51:20 -04:00
parent 0bcdd67a81
commit 41fbdcae1a
11 changed files with 245 additions and 3 deletions

View File

@@ -11,6 +11,10 @@
|
*/
Route::get('/', function () {
return "Laravel";
});
Route::get('/concerts/{id}', 'ConcertsController@show');
Route::post('/concerts/{id}/orders', 'ConcertOrdersController@store');
Route::get('/orders/{confirmationNumber}', 'OrdersController@show');