@@ -11,57 +11,57 @@ discard block |
||
| 11 | 11 | | |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -Route::get('/', function () { |
|
| 14 | +Route::get('/', function() { |
|
| 15 | 15 | return view('welcome'); |
| 16 | 16 | }); |
| 17 | 17 | |
| 18 | -Route::get('/inventory', function () { |
|
| 18 | +Route::get('/inventory', function() { |
|
| 19 | 19 | return view('inventory'); |
| 20 | 20 | }); |
| 21 | 21 | |
| 22 | -Route::get('/manteniments', function () { |
|
| 22 | +Route::get('/manteniments', function() { |
|
| 23 | 23 | return view('manteniments'); |
| 24 | 24 | }); |
| 25 | 25 | |
| 26 | -Route::get('/providers', function () { |
|
| 26 | +Route::get('/providers', function() { |
|
| 27 | 27 | return view('providers'); |
| 28 | 28 | }); |
| 29 | 29 | |
| 30 | -Route::get('/location', function () { |
|
| 30 | +Route::get('/location', function() { |
|
| 31 | 31 | return view('location'); |
| 32 | 32 | }); |
| 33 | 33 | |
| 34 | -Route::get('/material-type', function () { |
|
| 34 | +Route::get('/material-type', function() { |
|
| 35 | 35 | return view('material-type'); |
| 36 | 36 | }); |
| 37 | 37 | |
| 38 | -Route::get('/brand-model', function () { |
|
| 38 | +Route::get('/brand-model', function() { |
|
| 39 | 39 | return view('brand-model'); |
| 40 | 40 | }); |
| 41 | 41 | |
| 42 | -Route::get('/brand', function () { |
|
| 42 | +Route::get('/brand', function() { |
|
| 43 | 43 | return view('brand'); |
| 44 | 44 | }); |
| 45 | 45 | |
| 46 | -Route::get('/vue', function () { |
|
| 46 | +Route::get('/vue', function() { |
|
| 47 | 47 | return view('vue'); |
| 48 | 48 | }); |
| 49 | 49 | |
| 50 | 50 | Route::resource('inventory', 'InventoryController'); |
| 51 | 51 | |
| 52 | -Route::get('foo', function () { |
|
| 52 | +Route::get('foo', function() { |
|
| 53 | 53 | return 'Hello World'; |
| 54 | 54 | }); |
| 55 | 55 | |
| 56 | -Route::get('/mnt/provider/create', function () { |
|
| 56 | +Route::get('/mnt/provider/create', function() { |
|
| 57 | 57 | return view('create'); |
| 58 | 58 | }); |
| 59 | 59 | |
| 60 | -Route::get('/test/datepicker', function () { |
|
| 60 | +Route::get('/test/datepicker', function() { |
|
| 61 | 61 | return view('datepicker'); |
| 62 | 62 | }); |
| 63 | 63 | |
| 64 | -Route:: get('dashboard', function () { |
|
| 64 | +Route:: get('dashboard', function() { |
|
| 65 | 65 | return view('dashboard'); |
| 66 | 66 | }); |
| 67 | 67 | |
@@ -107,5 +107,5 @@ discard block |
||
| 107 | 107 | Route::get('/redirect', 'SocialAuthTwitterController@redirect'); |
| 108 | 108 | Route::get('/callback', 'SocialAuthTwitterController@callback'); |
| 109 | 109 | |
| 110 | -Route::group(['middleware' => 'web'], function () { |
|
| 110 | +Route::group([ 'middleware' => 'web' ], function() { |
|
| 111 | 111 | }); |