equal
deleted
inserted
replaced
6 |-------------------------------------------------------------------------- |
6 |-------------------------------------------------------------------------- |
7 | |
7 | |
8 | |
8 | |
9 */ |
9 */ |
10 |
10 |
11 Route::get('/', 'WelcomeController@index'); |
11 Route::get('/', 'WelcomeController@index')->name('root'); |
12 |
12 |
13 Route::get('home', 'HomeController@index'); |
13 Route::get('home', 'HomeController@index'); |
14 |
14 |
15 Route::group(['middleware' => ['web']], function () { |
15 Route::group(['middleware' => ['web']], function () { |
16 |
16 |
19 Route::get('bo/docs/client/{docs}', 'Bo\DocumentListController@getClient') |
19 Route::get('bo/docs/client/{docs}', 'Bo\DocumentListController@getClient') |
20 ->name('bo.docs.client') |
20 ->name('bo.docs.client') |
21 ->where('docs', '.+'); |
21 ->where('docs', '.+'); |
22 Route::resource('bo/docs', 'Bo\DocumentListController'); |
22 Route::resource('bo/docs', 'Bo\DocumentListController'); |
23 |
23 |
|
24 Route::get('sparql/client', 'Sparql\SparqlClientController@index')->name('sparql_form'); |
|
25 Route::get('sparql/query', 'Sparql\SparqlClientController@show')->name('sparql_query'); |
|
26 Route::get('sparql/proxy', 'Sparql\SparqlClientController@query')->name('sparql_proxy'); |
24 |
27 |
25 //Route::controllers([ |
28 //Route::controllers([ |
26 // 'auth' => 'Auth\AuthController', |
29 // 'auth' => 'Auth\AuthController', |
27 // 'password' => 'Auth\PasswordController', |
30 // 'password' => 'Auth\PasswordController', |
28 //]); |
31 //]); |