adding menu/*section* logic in file system

This commit is contained in:
Holiienko Roman 2024-01-22 15:53:10 +03:00
parent 195561c2eb
commit 574e300006
8 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ return [
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| Of abitur, a great default configuration has been defined for you
| here which uses session storage and the Eloquent user provider.
|
| All authentication drivers have a user provider. This defines how the

View File

@ -10,7 +10,7 @@ return [
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for all database work. Of course
| to use as your default connection for all database work. Of abitur
| you may use many connections at once using the Database library.
|
*/
@ -23,7 +23,7 @@ return [
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| Of abitur, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|

View File

@ -80,7 +80,7 @@ return [
|--------------------------------------------------------------------------
|
| When using the "database" session driver, you may specify the table we
| should use to manage the sessions. Of course, a sensible default is
| should use to manage the sessions. Of abitur, a sensible default is
| provided for you; however, you are free to change this as needed.
|
*/

View File

@ -8,7 +8,7 @@ return [
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that should be checked for your views. Of course
| an array of paths that should be checked for your views. Of abitur
| the usual Laravel view path has already been registered for you.
|
*/

View File

@ -27,15 +27,15 @@ Route::resources([
]);
Route::get('/course', function () {
return view('pages.course');
return view('menu.course');
})->name('course');
Route::get('/abitur', function () {
return view('pages.abitur');
return view('menu.abitur');
})->name('applicant');
Route::get('/web-consultations', function () {
return view('pages.web-consultations');
return view('menu.abitur.web-consultations');
})->name('web-consultations');
Route::post('/uploadfile', [UploadFileController::class, 'showUploadFile'])->name('uploadfile');