equal
deleted
inserted
replaced
19 |
19 |
20 Route::controllers([ |
20 Route::controllers([ |
21 'auth' => 'Auth\AuthController', |
21 'auth' => 'Auth\AuthController', |
22 'password' => 'Auth\PasswordController', |
22 'password' => 'Auth\PasswordController', |
23 ]); |
23 ]); |
|
24 |
|
25 /* |
|
26 |-------------------------------------------------------------------------- |
|
27 | Api Route |
|
28 |-------------------------------------------------------------------------- |
|
29 | |
|
30 | |
|
31 */ |
|
32 |
|
33 Route::resource('api/document', 'Api\DocumentController', |
|
34 ['only' => ['index', 'show']]); |