File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ |--------------------------------------------------------------------------
5
+ | Web Routes
6
+ |--------------------------------------------------------------------------
7
+ |
8
+ | Here is where you can register web routes for your application. These
9
+ | routes are loaded by the RouteServiceProvider within a group which
10
+ | contains the "web" middleware group. Now create something great!
11
+ |
12
+ */
13
+
14
+
15
+ Route::group (['middleware ' => ['web ' ]], function () {
16
+ Route::get ('/playersvuejscrud ' , 'PlayerController@playersvuecrud ' );
17
+ Route::resource ('playersvueitems ' ,'PlayerController ' );
18
+ });
19
+
20
+ Route::group (['middleware ' => ['web ' ]], function () {
21
+ Route::get ('/teamsvuejscrud ' , 'TeamController@teamsvuecrud ' );
22
+ Route::resource ('teamsvueitems ' ,'TeamController ' );
23
+ });
You can’t perform that action at this time.
0 commit comments