98 - Testing the Login Endpoint

This commit is contained in:
Adam Wathan
2017-05-02 14:05:46 -04:00
parent 9d0fb299b8
commit 0bc8954774
3 changed files with 78 additions and 33 deletions

View File

@@ -11,12 +11,8 @@
|
*/
Route::get('/mockups/order', function () {
return view('orders.show');
});
Route::get('/concerts/{id}', 'ConcertsController@show');
Route::post('/concerts/{id}/orders', 'ConcertOrdersController@store');
Route::get('/orders/{confirmationNumber}', 'OrdersController@show');
Route::post('/login', 'Auth\LoginController@login');