From b7d0a2453ee548eedbd61e4e3e752c2ea7baa3a4 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Thu, 11 Apr 2024 19:52:37 +0500 Subject: [PATCH] Moved from "app/src" to "app/application". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise phpstorm doesn't understand the paths correctly. He thinks that this is not a complete application, but a package. And when creating a class, the namespace indicates “app” with a small letter, but should be “App”. --- app/{src => application}/.editorconfig | 0 app/{src => application}/.env.example | 0 app/{src => application}/.gitattributes | 0 app/{src => application}/.gitignore | 0 app/{src => application}/README.md | 0 .../app/Console/Commands/CreateUserAdmin.php | 0 app/{src => application}/app/Contracts/FormRequestDto.php | 0 app/{src => application}/app/Contracts/Models/Storage.php | 0 app/{src => application}/app/Contracts/Search.php | 0 app/{src => application}/app/Contracts/ServiceResult.php | 0 .../app/Contracts/ServiceResultError.php | 0 app/{src => application}/app/Contracts/StorageType.php | 0 .../app/Contracts/StorageType/Audio.php | 0 .../app/Contracts/StorageType/Image.php | 0 .../app/Contracts/StorageType/Video.php | 0 app/{src => application}/app/Dto/Builder/Project.php | 0 app/{src => application}/app/Dto/Builder/Role.php | 0 app/{src => application}/app/Dto/Builder/User.php | 0 app/{src => application}/app/Dto/QuerySettingsDto.php | 0 .../app/Dto/Service/Admin/Language/NewLanguage.php | 0 .../app/Dto/Service/Admin/Project/Index.php | 0 .../app/Dto/Service/Admin/Project/Language.php | 0 .../app/Dto/Service/Admin/Project/Languages.php | 0 .../app/Dto/Service/Admin/Project/StoreUpdate.php | 0 .../app/Dto/Service/Admin/Role/Index.php | 0 .../app/Dto/Service/Admin/Role/StoreUpdate.php | 0 .../app/Dto/Service/Admin/User/Index.php | 0 .../app/Dto/Service/Admin/User/StoreUpdate.php | 0 .../app/Dto/Service/Authorization.php | 0 app/{src => application}/app/Dto/Service/Dto.php | 0 app/{src => application}/app/Dto/Service/Pages.php | 0 .../app/Dto/Service/Private/Profile/Update.php | 0 .../app/Dto/Service/Private/Profile/UpdateSettings.php | 0 app/{src => application}/app/Dto/Service/Storage/File.php | 0 .../app/Dto/Service/Storage/Storage.php | 0 .../app/Dto/Service/Storage/Storages.php | 0 .../app/Dto/Service/Storage/Upload.php | 0 .../app/Dto/Service/User/UpdatePassword.php | 0 app/{src => application}/app/Dto/User/ManyRoleDto.php | 0 app/{src => application}/app/Enums/Lang.php | 0 app/{src => application}/app/Enums/Morph.php | 0 app/{src => application}/app/Enums/Permission.php | 0 app/{src => application}/app/Enums/StorageType.php | 0 app/{src => application}/app/Enums/SystemRole.php | 0 .../app/Exceptions/Dto/Storage/FileException.php | 0 .../app/Exceptions/Dto/Storage/StorageException.php | 0 .../app/Exceptions/Dto/Storage/StoragesException.php | 0 .../app/Exceptions/Dto/User/ManyRoleDtoException.php | 0 .../Services/Storage/StorageCommandHandlerException.php | 0 .../Services/Storage/StorageSaveFileException.php | 0 app/{src => application}/app/Helpers/Helpers.php | 0 .../app/Http/Controllers/Admin/Controller.php | 0 .../app/Http/Controllers/Admin/DashboardController.php | 0 .../app/Http/Controllers/Admin/LanguagesController.php | 0 .../app/Http/Controllers/Admin/ProjectsController.php | 0 .../app/Http/Controllers/Admin/RolesController.php | 0 .../app/Http/Controllers/Admin/UsersController.php | 0 .../app/Http/Controllers/AuthController.php | 0 .../app/Http/Controllers/Controller.php | 0 .../app/Http/Controllers/Private/Controller.php | 0 .../app/Http/Controllers/Private/ProfileController.php | 0 .../app/Http/Controllers/Storage/Controller.php | 0 .../app/Http/Controllers/Storage/ImagesController.php | 0 .../app/Http/Middleware/AdminPanel.php | 0 .../app/Http/Middleware/UserLocale.php | 0 .../Http/Requests/Admin/Languages/NewLanguageRequest.php | 0 .../app/Http/Requests/Admin/Projects/IndexRequest.php | 0 .../Http/Requests/Admin/Projects/StoreUpdateRequest.php | 0 .../app/Http/Requests/Admin/Roles/IndexRequest.php | 0 .../app/Http/Requests/Admin/Roles/StoreUpdateRequest.php | 0 .../app/Http/Requests/Admin/Users/IndexRequest.php | 0 .../app/Http/Requests/Admin/Users/StoreUpdateRequest.php | 0 .../Http/Requests/Admin/Users/UpdatePasswordRequest.php | 0 .../app/Http/Requests/AuthorizationRequest.php | 0 .../Requests/Private/Profile/UpdatePasswordRequest.php | 0 .../app/Http/Requests/Private/Profile/UpdateRequest.php | 0 .../Requests/Private/Profile/UpdateSettingsRequest.php | 0 .../app/Http/Requests/Storage/ImageRequest.php | 0 .../app/Http/Resources/Admin/Languages/NewLanguage.php | 0 .../app/Http/Resources/Storage/Upload.php | 0 app/{src => application}/app/Models/Project.php | 0 app/{src => application}/app/Models/ProjectLanguage.php | 0 app/{src => application}/app/Models/Role.php | 0 app/{src => application}/app/Models/RolePermission.php | 0 app/{src => application}/app/Models/Scopes/SortScope.php | 0 app/{src => application}/app/Models/Storage.php | 0 .../app/Models/Traits/StorageTrait.php | 0 app/{src => application}/app/Models/User.php | 0 app/{src => application}/app/Policies/AdminPanel.php | 0 app/{src => application}/app/Policies/Policy.php | 0 app/{src => application}/app/Policies/ProjectPolicy.php | 0 app/{src => application}/app/Policies/RolePolicy.php | 0 app/{src => application}/app/Policies/UserPolicy.php | 0 .../app/Providers/AppServiceProvider.php | 0 .../app/Repositories/ProjectRepository.php | 0 .../app/Repositories/RoleRepository.php | 0 .../app/Repositories/StorageRepository.php | 0 .../app/Repositories/UserRepository.php | 0 app/{src => application}/app/Rules/HttpHost.php | 0 app/{src => application}/app/Rules/Permission.php | 0 .../Admin/LanguageService/NewLanguageResult.php | 0 .../app/ServiceResults/ServiceResult.php | 0 .../app/ServiceResults/ServiceResultArray.php | 0 .../app/ServiceResults/ServiceResultError.php | 0 .../app/ServiceResults/ServiceResultSuccess.php | 0 .../ServiceResults/Storage/SaveDeleteStorageResult.php | 0 .../app/ServiceResults/Storage/UploadResult.php | 0 .../app/ServiceResults/StoreUpdateResult.php | 0 .../app/Services/Admin/LanguageService.php | 0 .../app/Services/Admin/ProjectService.php | 0 .../app/Services/Admin/RoleService.php | 0 .../app/Services/Admin/UserService.php | 0 app/{src => application}/app/Services/AuthService.php | 0 .../app/Services/Private/ProfileService.php | 0 .../app/Services/Project/BuilderCommand.php | 0 .../app/Services/Project/ProjectCommandHandler.php | 0 .../app/Services/ProjectLanguage/ModelSyncCommand.php | 0 .../app/Services/Role/BuilderCommand.php | 0 .../Services/Role/CreateAdminRoleForProjectCommand.php | 0 .../app/Services/Role/RoleCommandHandler.php | 0 .../Services/Role/RoleSyncPermissionsCommandHandler.php | 0 .../app/Services/Search/CreateSearchInstanceCommand.php | 0 app/{src => application}/app/Services/Search/Search.php | 0 app/{src => application}/app/Services/Service.php | 0 .../app/Services/Storage/Image/ResizeCommandHandler.php | 0 .../app/Services/Storage/ImageService.php | 0 .../app/Services/Storage/StorageCommandHandler.php | 0 .../app/Services/Storage/StorageService.php | 0 .../app/Services/Storage/ValidationService.php | 0 .../app/Services/User/BuilderCommand.php | 0 .../app/Services/User/UserCommandHandler.php | 0 .../app/View/Components/Admin/Layout.php | 0 .../app/View/Components/AuthLayout.php | 0 .../app/View/Components/Private/Layout.php | 0 .../app/View/Components/PrivateLayout.php | 0 .../app/View/Components/Volt/Forms/Checkbox.php | 0 .../app/View/Components/Volt/Forms/Form.php | 0 .../app/View/Components/Volt/Forms/Input.php | 0 .../app/View/Components/Volt/Forms/InputTypeHidden.php | 0 .../app/View/Components/Volt/Forms/Languages.php | 0 .../app/View/Components/Volt/Forms/MultiCheckbox.php | 0 .../app/View/Components/Volt/Forms/PermissionsForRole.php | 0 .../app/View/Components/Volt/Forms/Select.php | 0 .../app/View/Components/Volt/Forms/Upload/Image.php | 0 app/{src => application}/artisan | 0 app/{src => application}/bootstrap/app.php | 0 app/{src => application}/bootstrap/cache/.gitignore | 0 app/{src => application}/bootstrap/providers.php | 0 app/{src => application}/composer.json | 0 app/{src => application}/composer.lock | 0 app/{src => application}/config/app.php | 0 app/{src => application}/config/auth.php | 0 app/{src => application}/config/cache.php | 0 app/{src => application}/config/database.php | 0 app/{src => application}/config/filesystems.php | 0 app/{src => application}/config/image.php | 0 app/{src => application}/config/logging.php | 0 app/{src => application}/config/mail.php | 0 app/{src => application}/config/queue.php | 0 app/{src => application}/config/rate_limiting.php | 0 app/{src => application}/config/services.php | 0 app/{src => application}/config/session.php | 0 app/{src => application}/config/storage.php | 0 app/{src => application}/database/.gitignore | 0 .../database/factories/UserFactory.php | 0 .../migrations/0001_01_01_000000_create_users_table.php | 0 .../migrations/0001_01_01_000001_create_cache_table.php | 0 .../migrations/0001_01_01_000002_create_jobs_table.php | 0 .../database/migrations/2024_04_01_184305_roles.php | 0 .../migrations/2024_04_03_062346_create_projects.php | 0 .../database/seeders/DatabaseSeeder.php | 0 app/{src => application}/lang/en.json | 0 app/{src => application}/lang/en/actions.php | 0 app/{src => application}/lang/en/admin-sections.php | 0 app/{src => application}/lang/en/auth.php | 0 app/{src => application}/lang/en/http-statuses.php | 0 app/{src => application}/lang/en/pagination.php | 0 app/{src => application}/lang/en/passwords.php | 0 app/{src => application}/lang/en/permissions.php | 0 app/{src => application}/lang/en/storage.php | 0 app/{src => application}/lang/en/validation.php | 0 app/{src => application}/lang/ru.json | 0 app/{src => application}/lang/ru/actions.php | 0 app/{src => application}/lang/ru/admin-sections.php | 0 app/{src => application}/lang/ru/auth.php | 0 app/{src => application}/lang/ru/http-statuses.php | 0 app/{src => application}/lang/ru/pagination.php | 0 app/{src => application}/lang/ru/passwords.php | 0 app/{src => application}/lang/ru/permissions.php | 0 app/{src => application}/lang/ru/storage.php | 0 app/{src => application}/lang/ru/validation.php | 0 app/{src => application}/package-lock.json | 0 app/{src => application}/package.json | 0 app/{src => application}/phpunit.xml | 0 app/{src => application}/public/.htaccess | 0 app/{src => application}/public/favicon.ico | 0 app/{src => application}/public/index.php | 0 app/{src => application}/public/robots.txt | 0 .../views/admin/_scripts/_click-confirm.blade.php | 0 .../resources/views/admin/dashboard/index.blade.php | 0 .../resources/views/admin/layout/_navigation.blade.php | 0 .../resources/views/admin/projects/_from.blade.php | 0 .../resources/views/admin/projects/_top.blade.php | 0 .../resources/views/admin/projects/create.blade.php | 0 .../resources/views/admin/projects/edit.blade.php | 0 .../resources/views/admin/projects/index.blade.php | 0 .../resources/views/admin/roles/_from.blade.php | 0 .../resources/views/admin/roles/_top.blade.php | 0 .../resources/views/admin/roles/create.blade.php | 0 .../resources/views/admin/roles/edit.blade.php | 0 .../resources/views/admin/roles/index.blade.php | 0 .../resources/views/admin/users/_from.blade.php | 0 .../resources/views/admin/users/_top.blade.php | 0 .../resources/views/admin/users/create.blade.php | 0 .../resources/views/admin/users/edit.blade.php | 0 .../resources/views/admin/users/index.blade.php | 0 .../views/components/volt/forms/checkbox.blade.php | 0 .../components/volt/forms/input-type-hidden.blade.php | 0 .../resources/views/components/volt/forms/input.blade.php | 0 .../views/components/volt/forms/languages.blade.php | 0 .../views/components/volt/forms/languages/input.blade.php | 0 .../components/volt/forms/languages/language.blade.php | 0 .../views/components/volt/forms/languages/radio.blade.php | 0 .../views/components/volt/forms/multi_checkbox.blade.php | 0 .../components/volt/forms/permissions_for_role.blade.php | 0 .../views/components/volt/forms/select.blade.php | 0 .../views/components/volt/forms/upload/image.blade.php | 0 .../resources/views/layout/auth.blade.php | 0 .../resources/views/layout/private.blade.php | 0 .../resources/views/layout/private/_errors.blade.php | 0 .../resources/views/layout/private/_success.blade.php | 0 app/{src => application}/resources/views/login.blade.php | 0 .../resources/views/private/layout/_navigation.blade.php | 0 .../resources/views/private/profile/profile.blade.php | 0 .../resources/views/private/profile/settings.blade.php | 0 app/{src => application}/resources/volt/LICENSE.md | 0 .../resources/volt/images/illustrations/signin.svg | 0 app/{src => application}/resources/volt/js/app.js | 0 app/{src => application}/resources/volt/js/bootstrap.js | 0 app/{src => application}/resources/volt/js/image.js | 0 app/{src => application}/resources/volt/js/volt.js | 0 .../resources/volt/scss/_variables.scss | 0 app/{src => application}/resources/volt/scss/app.scss | 0 .../resources/volt/scss/volt/_components.scss | 0 .../resources/volt/scss/volt/_forms.scss | 0 .../resources/volt/scss/volt/_functions.scss | 0 .../resources/volt/scss/volt/_layout.scss | 0 .../resources/volt/scss/volt/_mixins.scss | 0 .../resources/volt/scss/volt/_utilities.scss | 0 .../resources/volt/scss/volt/_variables.scss | 0 .../resources/volt/scss/volt/_vendor.scss | 0 .../resources/volt/scss/volt/components/_accordions.scss | 0 .../resources/volt/scss/volt/components/_alerts.scss | 0 .../resources/volt/scss/volt/components/_animations.scss | 0 .../resources/volt/scss/volt/components/_avatars.scss | 0 .../resources/volt/scss/volt/components/_badge.scss | 0 .../resources/volt/scss/volt/components/_body.scss | 0 .../resources/volt/scss/volt/components/_breadcrumb.scss | 0 .../resources/volt/scss/volt/components/_buttons.scss | 0 .../resources/volt/scss/volt/components/_card.scss | 0 .../resources/volt/scss/volt/components/_carousel.scss | 0 .../resources/volt/scss/volt/components/_charts.scss | 0 .../resources/volt/scss/volt/components/_close.scss | 0 .../volt/scss/volt/components/_custom-forms.scss | 0 .../resources/volt/scss/volt/components/_datepicker.scss | 0 .../resources/volt/scss/volt/components/_dropdown.scss | 0 .../resources/volt/scss/volt/components/_icons.scss | 0 .../resources/volt/scss/volt/components/_images.scss | 0 .../resources/volt/scss/volt/components/_list-group.scss | 0 .../resources/volt/scss/volt/components/_modal.scss | 0 .../resources/volt/scss/volt/components/_nav.scss | 0 .../resources/volt/scss/volt/components/_pagination.scss | 0 .../resources/volt/scss/volt/components/_popover.scss | 0 .../resources/volt/scss/volt/components/_progress.scss | 0 .../resources/volt/scss/volt/components/_scrollbar.scss | 0 .../resources/volt/scss/volt/components/_shapes.scss | 0 .../resources/volt/scss/volt/components/_steps.scss | 0 .../resources/volt/scss/volt/components/_tables.scss | 0 .../resources/volt/scss/volt/components/_timelines.scss | 0 .../resources/volt/scss/volt/components/_tooltip.scss | 0 .../resources/volt/scss/volt/components/_type.scss | 0 .../resources/volt/scss/volt/forms/_form-check.scss | 0 .../resources/volt/scss/volt/forms/_form-control.scss | 0 .../resources/volt/scss/volt/forms/_form-select.scss | 0 .../resources/volt/scss/volt/forms/_input-group.scss | 0 .../resources/volt/scss/volt/layout/_footer.scss | 0 .../resources/volt/scss/volt/layout/_navbar.scss | 0 .../resources/volt/scss/volt/layout/_section.scss | 0 .../resources/volt/scss/volt/layout/_sidebar.scss | 0 .../resources/volt/scss/volt/layout/_sidenav.scss | 0 .../resources/volt/scss/volt/mixins/_animations.scss | 0 .../volt/scss/volt/mixins/_background-variant.scss | 0 .../resources/volt/scss/volt/mixins/_icon.scss | 0 .../resources/volt/scss/volt/mixins/_modals.scss | 0 .../resources/volt/scss/volt/mixins/_popover.scss | 0 .../resources/volt/scss/volt/mixins/_transform.scss | 0 .../resources/volt/scss/volt/mixins/_utilities.scss | 0 app/{src => application}/routes/console.php | 0 app/{src => application}/routes/web.php | 0 app/{src => application}/storage/app/.gitignore | 0 app/{src => application}/storage/app/public/.gitignore | 0 app/{src => application}/storage/framework/.gitignore | 0 .../storage/framework/cache/.gitignore | 0 .../storage/framework/cache/data/.gitignore | 0 .../storage/framework/sessions/.gitignore | 0 .../storage/framework/testing/.gitignore | 0 .../storage/framework/views/.gitignore | 0 app/{src => application}/storage/logs/.gitignore | 0 app/{src => application}/tests/Feature/ExampleTest.php | 0 app/{src => application}/tests/TestCase.php | 0 app/{src => application}/tests/Unit/ExampleTest.php | 0 app/{src => application}/vite.config.js | 0 app/docker/Dockerfile | 2 +- docker-compose.yml | 8 ++++---- 314 files changed, 5 insertions(+), 5 deletions(-) rename app/{src => application}/.editorconfig (100%) rename app/{src => application}/.env.example (100%) rename app/{src => application}/.gitattributes (100%) rename app/{src => application}/.gitignore (100%) rename app/{src => application}/README.md (100%) rename app/{src => application}/app/Console/Commands/CreateUserAdmin.php (100%) rename app/{src => application}/app/Contracts/FormRequestDto.php (100%) rename app/{src => application}/app/Contracts/Models/Storage.php (100%) rename app/{src => application}/app/Contracts/Search.php (100%) rename app/{src => application}/app/Contracts/ServiceResult.php (100%) rename app/{src => application}/app/Contracts/ServiceResultError.php (100%) rename app/{src => application}/app/Contracts/StorageType.php (100%) rename app/{src => application}/app/Contracts/StorageType/Audio.php (100%) rename app/{src => application}/app/Contracts/StorageType/Image.php (100%) rename app/{src => application}/app/Contracts/StorageType/Video.php (100%) rename app/{src => application}/app/Dto/Builder/Project.php (100%) rename app/{src => application}/app/Dto/Builder/Role.php (100%) rename app/{src => application}/app/Dto/Builder/User.php (100%) rename app/{src => application}/app/Dto/QuerySettingsDto.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Language/NewLanguage.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Project/Index.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Project/Language.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Project/Languages.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Project/StoreUpdate.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Role/Index.php (100%) rename app/{src => application}/app/Dto/Service/Admin/Role/StoreUpdate.php (100%) rename app/{src => application}/app/Dto/Service/Admin/User/Index.php (100%) rename app/{src => application}/app/Dto/Service/Admin/User/StoreUpdate.php (100%) rename app/{src => application}/app/Dto/Service/Authorization.php (100%) rename app/{src => application}/app/Dto/Service/Dto.php (100%) rename app/{src => application}/app/Dto/Service/Pages.php (100%) rename app/{src => application}/app/Dto/Service/Private/Profile/Update.php (100%) rename app/{src => application}/app/Dto/Service/Private/Profile/UpdateSettings.php (100%) rename app/{src => application}/app/Dto/Service/Storage/File.php (100%) rename app/{src => application}/app/Dto/Service/Storage/Storage.php (100%) rename app/{src => application}/app/Dto/Service/Storage/Storages.php (100%) rename app/{src => application}/app/Dto/Service/Storage/Upload.php (100%) rename app/{src => application}/app/Dto/Service/User/UpdatePassword.php (100%) rename app/{src => application}/app/Dto/User/ManyRoleDto.php (100%) rename app/{src => application}/app/Enums/Lang.php (100%) rename app/{src => application}/app/Enums/Morph.php (100%) rename app/{src => application}/app/Enums/Permission.php (100%) rename app/{src => application}/app/Enums/StorageType.php (100%) rename app/{src => application}/app/Enums/SystemRole.php (100%) rename app/{src => application}/app/Exceptions/Dto/Storage/FileException.php (100%) rename app/{src => application}/app/Exceptions/Dto/Storage/StorageException.php (100%) rename app/{src => application}/app/Exceptions/Dto/Storage/StoragesException.php (100%) rename app/{src => application}/app/Exceptions/Dto/User/ManyRoleDtoException.php (100%) rename app/{src => application}/app/Exceptions/Services/Storage/StorageCommandHandlerException.php (100%) rename app/{src => application}/app/Exceptions/Services/Storage/StorageSaveFileException.php (100%) rename app/{src => application}/app/Helpers/Helpers.php (100%) rename app/{src => application}/app/Http/Controllers/Admin/Controller.php (100%) rename app/{src => application}/app/Http/Controllers/Admin/DashboardController.php (100%) rename app/{src => application}/app/Http/Controllers/Admin/LanguagesController.php (100%) rename app/{src => application}/app/Http/Controllers/Admin/ProjectsController.php (100%) rename app/{src => application}/app/Http/Controllers/Admin/RolesController.php (100%) rename app/{src => application}/app/Http/Controllers/Admin/UsersController.php (100%) rename app/{src => application}/app/Http/Controllers/AuthController.php (100%) rename app/{src => application}/app/Http/Controllers/Controller.php (100%) rename app/{src => application}/app/Http/Controllers/Private/Controller.php (100%) rename app/{src => application}/app/Http/Controllers/Private/ProfileController.php (100%) rename app/{src => application}/app/Http/Controllers/Storage/Controller.php (100%) rename app/{src => application}/app/Http/Controllers/Storage/ImagesController.php (100%) rename app/{src => application}/app/Http/Middleware/AdminPanel.php (100%) rename app/{src => application}/app/Http/Middleware/UserLocale.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Languages/NewLanguageRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Projects/IndexRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Projects/StoreUpdateRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Roles/IndexRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Roles/StoreUpdateRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Users/IndexRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Users/StoreUpdateRequest.php (100%) rename app/{src => application}/app/Http/Requests/Admin/Users/UpdatePasswordRequest.php (100%) rename app/{src => application}/app/Http/Requests/AuthorizationRequest.php (100%) rename app/{src => application}/app/Http/Requests/Private/Profile/UpdatePasswordRequest.php (100%) rename app/{src => application}/app/Http/Requests/Private/Profile/UpdateRequest.php (100%) rename app/{src => application}/app/Http/Requests/Private/Profile/UpdateSettingsRequest.php (100%) rename app/{src => application}/app/Http/Requests/Storage/ImageRequest.php (100%) rename app/{src => application}/app/Http/Resources/Admin/Languages/NewLanguage.php (100%) rename app/{src => application}/app/Http/Resources/Storage/Upload.php (100%) rename app/{src => application}/app/Models/Project.php (100%) rename app/{src => application}/app/Models/ProjectLanguage.php (100%) rename app/{src => application}/app/Models/Role.php (100%) rename app/{src => application}/app/Models/RolePermission.php (100%) rename app/{src => application}/app/Models/Scopes/SortScope.php (100%) rename app/{src => application}/app/Models/Storage.php (100%) rename app/{src => application}/app/Models/Traits/StorageTrait.php (100%) rename app/{src => application}/app/Models/User.php (100%) rename app/{src => application}/app/Policies/AdminPanel.php (100%) rename app/{src => application}/app/Policies/Policy.php (100%) rename app/{src => application}/app/Policies/ProjectPolicy.php (100%) rename app/{src => application}/app/Policies/RolePolicy.php (100%) rename app/{src => application}/app/Policies/UserPolicy.php (100%) rename app/{src => application}/app/Providers/AppServiceProvider.php (100%) rename app/{src => application}/app/Repositories/ProjectRepository.php (100%) rename app/{src => application}/app/Repositories/RoleRepository.php (100%) rename app/{src => application}/app/Repositories/StorageRepository.php (100%) rename app/{src => application}/app/Repositories/UserRepository.php (100%) rename app/{src => application}/app/Rules/HttpHost.php (100%) rename app/{src => application}/app/Rules/Permission.php (100%) rename app/{src => application}/app/ServiceResults/Admin/LanguageService/NewLanguageResult.php (100%) rename app/{src => application}/app/ServiceResults/ServiceResult.php (100%) rename app/{src => application}/app/ServiceResults/ServiceResultArray.php (100%) rename app/{src => application}/app/ServiceResults/ServiceResultError.php (100%) rename app/{src => application}/app/ServiceResults/ServiceResultSuccess.php (100%) rename app/{src => application}/app/ServiceResults/Storage/SaveDeleteStorageResult.php (100%) rename app/{src => application}/app/ServiceResults/Storage/UploadResult.php (100%) rename app/{src => application}/app/ServiceResults/StoreUpdateResult.php (100%) rename app/{src => application}/app/Services/Admin/LanguageService.php (100%) rename app/{src => application}/app/Services/Admin/ProjectService.php (100%) rename app/{src => application}/app/Services/Admin/RoleService.php (100%) rename app/{src => application}/app/Services/Admin/UserService.php (100%) rename app/{src => application}/app/Services/AuthService.php (100%) rename app/{src => application}/app/Services/Private/ProfileService.php (100%) rename app/{src => application}/app/Services/Project/BuilderCommand.php (100%) rename app/{src => application}/app/Services/Project/ProjectCommandHandler.php (100%) rename app/{src => application}/app/Services/ProjectLanguage/ModelSyncCommand.php (100%) rename app/{src => application}/app/Services/Role/BuilderCommand.php (100%) rename app/{src => application}/app/Services/Role/CreateAdminRoleForProjectCommand.php (100%) rename app/{src => application}/app/Services/Role/RoleCommandHandler.php (100%) rename app/{src => application}/app/Services/Role/RoleSyncPermissionsCommandHandler.php (100%) rename app/{src => application}/app/Services/Search/CreateSearchInstanceCommand.php (100%) rename app/{src => application}/app/Services/Search/Search.php (100%) rename app/{src => application}/app/Services/Service.php (100%) rename app/{src => application}/app/Services/Storage/Image/ResizeCommandHandler.php (100%) rename app/{src => application}/app/Services/Storage/ImageService.php (100%) rename app/{src => application}/app/Services/Storage/StorageCommandHandler.php (100%) rename app/{src => application}/app/Services/Storage/StorageService.php (100%) rename app/{src => application}/app/Services/Storage/ValidationService.php (100%) rename app/{src => application}/app/Services/User/BuilderCommand.php (100%) rename app/{src => application}/app/Services/User/UserCommandHandler.php (100%) rename app/{src => application}/app/View/Components/Admin/Layout.php (100%) rename app/{src => application}/app/View/Components/AuthLayout.php (100%) rename app/{src => application}/app/View/Components/Private/Layout.php (100%) rename app/{src => application}/app/View/Components/PrivateLayout.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/Checkbox.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/Form.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/Input.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/InputTypeHidden.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/Languages.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/MultiCheckbox.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/PermissionsForRole.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/Select.php (100%) rename app/{src => application}/app/View/Components/Volt/Forms/Upload/Image.php (100%) rename app/{src => application}/artisan (100%) rename app/{src => application}/bootstrap/app.php (100%) rename app/{src => application}/bootstrap/cache/.gitignore (100%) rename app/{src => application}/bootstrap/providers.php (100%) rename app/{src => application}/composer.json (100%) rename app/{src => application}/composer.lock (100%) rename app/{src => application}/config/app.php (100%) rename app/{src => application}/config/auth.php (100%) rename app/{src => application}/config/cache.php (100%) rename app/{src => application}/config/database.php (100%) rename app/{src => application}/config/filesystems.php (100%) rename app/{src => application}/config/image.php (100%) rename app/{src => application}/config/logging.php (100%) rename app/{src => application}/config/mail.php (100%) rename app/{src => application}/config/queue.php (100%) rename app/{src => application}/config/rate_limiting.php (100%) rename app/{src => application}/config/services.php (100%) rename app/{src => application}/config/session.php (100%) rename app/{src => application}/config/storage.php (100%) rename app/{src => application}/database/.gitignore (100%) rename app/{src => application}/database/factories/UserFactory.php (100%) rename app/{src => application}/database/migrations/0001_01_01_000000_create_users_table.php (100%) rename app/{src => application}/database/migrations/0001_01_01_000001_create_cache_table.php (100%) rename app/{src => application}/database/migrations/0001_01_01_000002_create_jobs_table.php (100%) rename app/{src => application}/database/migrations/2024_04_01_184305_roles.php (100%) rename app/{src => application}/database/migrations/2024_04_03_062346_create_projects.php (100%) rename app/{src => application}/database/seeders/DatabaseSeeder.php (100%) rename app/{src => application}/lang/en.json (100%) rename app/{src => application}/lang/en/actions.php (100%) rename app/{src => application}/lang/en/admin-sections.php (100%) rename app/{src => application}/lang/en/auth.php (100%) rename app/{src => application}/lang/en/http-statuses.php (100%) rename app/{src => application}/lang/en/pagination.php (100%) rename app/{src => application}/lang/en/passwords.php (100%) rename app/{src => application}/lang/en/permissions.php (100%) rename app/{src => application}/lang/en/storage.php (100%) rename app/{src => application}/lang/en/validation.php (100%) rename app/{src => application}/lang/ru.json (100%) rename app/{src => application}/lang/ru/actions.php (100%) rename app/{src => application}/lang/ru/admin-sections.php (100%) rename app/{src => application}/lang/ru/auth.php (100%) rename app/{src => application}/lang/ru/http-statuses.php (100%) rename app/{src => application}/lang/ru/pagination.php (100%) rename app/{src => application}/lang/ru/passwords.php (100%) rename app/{src => application}/lang/ru/permissions.php (100%) rename app/{src => application}/lang/ru/storage.php (100%) rename app/{src => application}/lang/ru/validation.php (100%) rename app/{src => application}/package-lock.json (100%) rename app/{src => application}/package.json (100%) rename app/{src => application}/phpunit.xml (100%) rename app/{src => application}/public/.htaccess (100%) rename app/{src => application}/public/favicon.ico (100%) rename app/{src => application}/public/index.php (100%) rename app/{src => application}/public/robots.txt (100%) rename app/{src => application}/resources/views/admin/_scripts/_click-confirm.blade.php (100%) rename app/{src => application}/resources/views/admin/dashboard/index.blade.php (100%) rename app/{src => application}/resources/views/admin/layout/_navigation.blade.php (100%) rename app/{src => application}/resources/views/admin/projects/_from.blade.php (100%) rename app/{src => application}/resources/views/admin/projects/_top.blade.php (100%) rename app/{src => application}/resources/views/admin/projects/create.blade.php (100%) rename app/{src => application}/resources/views/admin/projects/edit.blade.php (100%) rename app/{src => application}/resources/views/admin/projects/index.blade.php (100%) rename app/{src => application}/resources/views/admin/roles/_from.blade.php (100%) rename app/{src => application}/resources/views/admin/roles/_top.blade.php (100%) rename app/{src => application}/resources/views/admin/roles/create.blade.php (100%) rename app/{src => application}/resources/views/admin/roles/edit.blade.php (100%) rename app/{src => application}/resources/views/admin/roles/index.blade.php (100%) rename app/{src => application}/resources/views/admin/users/_from.blade.php (100%) rename app/{src => application}/resources/views/admin/users/_top.blade.php (100%) rename app/{src => application}/resources/views/admin/users/create.blade.php (100%) rename app/{src => application}/resources/views/admin/users/edit.blade.php (100%) rename app/{src => application}/resources/views/admin/users/index.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/checkbox.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/input-type-hidden.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/input.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/languages.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/languages/input.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/languages/language.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/languages/radio.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/multi_checkbox.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/permissions_for_role.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/select.blade.php (100%) rename app/{src => application}/resources/views/components/volt/forms/upload/image.blade.php (100%) rename app/{src => application}/resources/views/layout/auth.blade.php (100%) rename app/{src => application}/resources/views/layout/private.blade.php (100%) rename app/{src => application}/resources/views/layout/private/_errors.blade.php (100%) rename app/{src => application}/resources/views/layout/private/_success.blade.php (100%) rename app/{src => application}/resources/views/login.blade.php (100%) rename app/{src => application}/resources/views/private/layout/_navigation.blade.php (100%) rename app/{src => application}/resources/views/private/profile/profile.blade.php (100%) rename app/{src => application}/resources/views/private/profile/settings.blade.php (100%) rename app/{src => application}/resources/volt/LICENSE.md (100%) rename app/{src => application}/resources/volt/images/illustrations/signin.svg (100%) rename app/{src => application}/resources/volt/js/app.js (100%) rename app/{src => application}/resources/volt/js/bootstrap.js (100%) rename app/{src => application}/resources/volt/js/image.js (100%) rename app/{src => application}/resources/volt/js/volt.js (100%) rename app/{src => application}/resources/volt/scss/_variables.scss (100%) rename app/{src => application}/resources/volt/scss/app.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_components.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_forms.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_functions.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_layout.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_mixins.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_utilities.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_variables.scss (100%) rename app/{src => application}/resources/volt/scss/volt/_vendor.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_accordions.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_alerts.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_animations.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_avatars.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_badge.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_body.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_breadcrumb.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_buttons.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_card.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_carousel.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_charts.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_close.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_custom-forms.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_datepicker.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_dropdown.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_icons.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_images.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_list-group.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_modal.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_nav.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_pagination.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_popover.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_progress.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_scrollbar.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_shapes.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_steps.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_tables.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_timelines.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_tooltip.scss (100%) rename app/{src => application}/resources/volt/scss/volt/components/_type.scss (100%) rename app/{src => application}/resources/volt/scss/volt/forms/_form-check.scss (100%) rename app/{src => application}/resources/volt/scss/volt/forms/_form-control.scss (100%) rename app/{src => application}/resources/volt/scss/volt/forms/_form-select.scss (100%) rename app/{src => application}/resources/volt/scss/volt/forms/_input-group.scss (100%) rename app/{src => application}/resources/volt/scss/volt/layout/_footer.scss (100%) rename app/{src => application}/resources/volt/scss/volt/layout/_navbar.scss (100%) rename app/{src => application}/resources/volt/scss/volt/layout/_section.scss (100%) rename app/{src => application}/resources/volt/scss/volt/layout/_sidebar.scss (100%) rename app/{src => application}/resources/volt/scss/volt/layout/_sidenav.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_animations.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_background-variant.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_icon.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_modals.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_popover.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_transform.scss (100%) rename app/{src => application}/resources/volt/scss/volt/mixins/_utilities.scss (100%) rename app/{src => application}/routes/console.php (100%) rename app/{src => application}/routes/web.php (100%) rename app/{src => application}/storage/app/.gitignore (100%) rename app/{src => application}/storage/app/public/.gitignore (100%) rename app/{src => application}/storage/framework/.gitignore (100%) rename app/{src => application}/storage/framework/cache/.gitignore (100%) rename app/{src => application}/storage/framework/cache/data/.gitignore (100%) rename app/{src => application}/storage/framework/sessions/.gitignore (100%) rename app/{src => application}/storage/framework/testing/.gitignore (100%) rename app/{src => application}/storage/framework/views/.gitignore (100%) rename app/{src => application}/storage/logs/.gitignore (100%) rename app/{src => application}/tests/Feature/ExampleTest.php (100%) rename app/{src => application}/tests/TestCase.php (100%) rename app/{src => application}/tests/Unit/ExampleTest.php (100%) rename app/{src => application}/vite.config.js (100%) diff --git a/app/src/.editorconfig b/app/application/.editorconfig similarity index 100% rename from app/src/.editorconfig rename to app/application/.editorconfig diff --git a/app/src/.env.example b/app/application/.env.example similarity index 100% rename from app/src/.env.example rename to app/application/.env.example diff --git a/app/src/.gitattributes b/app/application/.gitattributes similarity index 100% rename from app/src/.gitattributes rename to app/application/.gitattributes diff --git a/app/src/.gitignore b/app/application/.gitignore similarity index 100% rename from app/src/.gitignore rename to app/application/.gitignore diff --git a/app/src/README.md b/app/application/README.md similarity index 100% rename from app/src/README.md rename to app/application/README.md diff --git a/app/src/app/Console/Commands/CreateUserAdmin.php b/app/application/app/Console/Commands/CreateUserAdmin.php similarity index 100% rename from app/src/app/Console/Commands/CreateUserAdmin.php rename to app/application/app/Console/Commands/CreateUserAdmin.php diff --git a/app/src/app/Contracts/FormRequestDto.php b/app/application/app/Contracts/FormRequestDto.php similarity index 100% rename from app/src/app/Contracts/FormRequestDto.php rename to app/application/app/Contracts/FormRequestDto.php diff --git a/app/src/app/Contracts/Models/Storage.php b/app/application/app/Contracts/Models/Storage.php similarity index 100% rename from app/src/app/Contracts/Models/Storage.php rename to app/application/app/Contracts/Models/Storage.php diff --git a/app/src/app/Contracts/Search.php b/app/application/app/Contracts/Search.php similarity index 100% rename from app/src/app/Contracts/Search.php rename to app/application/app/Contracts/Search.php diff --git a/app/src/app/Contracts/ServiceResult.php b/app/application/app/Contracts/ServiceResult.php similarity index 100% rename from app/src/app/Contracts/ServiceResult.php rename to app/application/app/Contracts/ServiceResult.php diff --git a/app/src/app/Contracts/ServiceResultError.php b/app/application/app/Contracts/ServiceResultError.php similarity index 100% rename from app/src/app/Contracts/ServiceResultError.php rename to app/application/app/Contracts/ServiceResultError.php diff --git a/app/src/app/Contracts/StorageType.php b/app/application/app/Contracts/StorageType.php similarity index 100% rename from app/src/app/Contracts/StorageType.php rename to app/application/app/Contracts/StorageType.php diff --git a/app/src/app/Contracts/StorageType/Audio.php b/app/application/app/Contracts/StorageType/Audio.php similarity index 100% rename from app/src/app/Contracts/StorageType/Audio.php rename to app/application/app/Contracts/StorageType/Audio.php diff --git a/app/src/app/Contracts/StorageType/Image.php b/app/application/app/Contracts/StorageType/Image.php similarity index 100% rename from app/src/app/Contracts/StorageType/Image.php rename to app/application/app/Contracts/StorageType/Image.php diff --git a/app/src/app/Contracts/StorageType/Video.php b/app/application/app/Contracts/StorageType/Video.php similarity index 100% rename from app/src/app/Contracts/StorageType/Video.php rename to app/application/app/Contracts/StorageType/Video.php diff --git a/app/src/app/Dto/Builder/Project.php b/app/application/app/Dto/Builder/Project.php similarity index 100% rename from app/src/app/Dto/Builder/Project.php rename to app/application/app/Dto/Builder/Project.php diff --git a/app/src/app/Dto/Builder/Role.php b/app/application/app/Dto/Builder/Role.php similarity index 100% rename from app/src/app/Dto/Builder/Role.php rename to app/application/app/Dto/Builder/Role.php diff --git a/app/src/app/Dto/Builder/User.php b/app/application/app/Dto/Builder/User.php similarity index 100% rename from app/src/app/Dto/Builder/User.php rename to app/application/app/Dto/Builder/User.php diff --git a/app/src/app/Dto/QuerySettingsDto.php b/app/application/app/Dto/QuerySettingsDto.php similarity index 100% rename from app/src/app/Dto/QuerySettingsDto.php rename to app/application/app/Dto/QuerySettingsDto.php diff --git a/app/src/app/Dto/Service/Admin/Language/NewLanguage.php b/app/application/app/Dto/Service/Admin/Language/NewLanguage.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Language/NewLanguage.php rename to app/application/app/Dto/Service/Admin/Language/NewLanguage.php diff --git a/app/src/app/Dto/Service/Admin/Project/Index.php b/app/application/app/Dto/Service/Admin/Project/Index.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Project/Index.php rename to app/application/app/Dto/Service/Admin/Project/Index.php diff --git a/app/src/app/Dto/Service/Admin/Project/Language.php b/app/application/app/Dto/Service/Admin/Project/Language.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Project/Language.php rename to app/application/app/Dto/Service/Admin/Project/Language.php diff --git a/app/src/app/Dto/Service/Admin/Project/Languages.php b/app/application/app/Dto/Service/Admin/Project/Languages.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Project/Languages.php rename to app/application/app/Dto/Service/Admin/Project/Languages.php diff --git a/app/src/app/Dto/Service/Admin/Project/StoreUpdate.php b/app/application/app/Dto/Service/Admin/Project/StoreUpdate.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Project/StoreUpdate.php rename to app/application/app/Dto/Service/Admin/Project/StoreUpdate.php diff --git a/app/src/app/Dto/Service/Admin/Role/Index.php b/app/application/app/Dto/Service/Admin/Role/Index.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Role/Index.php rename to app/application/app/Dto/Service/Admin/Role/Index.php diff --git a/app/src/app/Dto/Service/Admin/Role/StoreUpdate.php b/app/application/app/Dto/Service/Admin/Role/StoreUpdate.php similarity index 100% rename from app/src/app/Dto/Service/Admin/Role/StoreUpdate.php rename to app/application/app/Dto/Service/Admin/Role/StoreUpdate.php diff --git a/app/src/app/Dto/Service/Admin/User/Index.php b/app/application/app/Dto/Service/Admin/User/Index.php similarity index 100% rename from app/src/app/Dto/Service/Admin/User/Index.php rename to app/application/app/Dto/Service/Admin/User/Index.php diff --git a/app/src/app/Dto/Service/Admin/User/StoreUpdate.php b/app/application/app/Dto/Service/Admin/User/StoreUpdate.php similarity index 100% rename from app/src/app/Dto/Service/Admin/User/StoreUpdate.php rename to app/application/app/Dto/Service/Admin/User/StoreUpdate.php diff --git a/app/src/app/Dto/Service/Authorization.php b/app/application/app/Dto/Service/Authorization.php similarity index 100% rename from app/src/app/Dto/Service/Authorization.php rename to app/application/app/Dto/Service/Authorization.php diff --git a/app/src/app/Dto/Service/Dto.php b/app/application/app/Dto/Service/Dto.php similarity index 100% rename from app/src/app/Dto/Service/Dto.php rename to app/application/app/Dto/Service/Dto.php diff --git a/app/src/app/Dto/Service/Pages.php b/app/application/app/Dto/Service/Pages.php similarity index 100% rename from app/src/app/Dto/Service/Pages.php rename to app/application/app/Dto/Service/Pages.php diff --git a/app/src/app/Dto/Service/Private/Profile/Update.php b/app/application/app/Dto/Service/Private/Profile/Update.php similarity index 100% rename from app/src/app/Dto/Service/Private/Profile/Update.php rename to app/application/app/Dto/Service/Private/Profile/Update.php diff --git a/app/src/app/Dto/Service/Private/Profile/UpdateSettings.php b/app/application/app/Dto/Service/Private/Profile/UpdateSettings.php similarity index 100% rename from app/src/app/Dto/Service/Private/Profile/UpdateSettings.php rename to app/application/app/Dto/Service/Private/Profile/UpdateSettings.php diff --git a/app/src/app/Dto/Service/Storage/File.php b/app/application/app/Dto/Service/Storage/File.php similarity index 100% rename from app/src/app/Dto/Service/Storage/File.php rename to app/application/app/Dto/Service/Storage/File.php diff --git a/app/src/app/Dto/Service/Storage/Storage.php b/app/application/app/Dto/Service/Storage/Storage.php similarity index 100% rename from app/src/app/Dto/Service/Storage/Storage.php rename to app/application/app/Dto/Service/Storage/Storage.php diff --git a/app/src/app/Dto/Service/Storage/Storages.php b/app/application/app/Dto/Service/Storage/Storages.php similarity index 100% rename from app/src/app/Dto/Service/Storage/Storages.php rename to app/application/app/Dto/Service/Storage/Storages.php diff --git a/app/src/app/Dto/Service/Storage/Upload.php b/app/application/app/Dto/Service/Storage/Upload.php similarity index 100% rename from app/src/app/Dto/Service/Storage/Upload.php rename to app/application/app/Dto/Service/Storage/Upload.php diff --git a/app/src/app/Dto/Service/User/UpdatePassword.php b/app/application/app/Dto/Service/User/UpdatePassword.php similarity index 100% rename from app/src/app/Dto/Service/User/UpdatePassword.php rename to app/application/app/Dto/Service/User/UpdatePassword.php diff --git a/app/src/app/Dto/User/ManyRoleDto.php b/app/application/app/Dto/User/ManyRoleDto.php similarity index 100% rename from app/src/app/Dto/User/ManyRoleDto.php rename to app/application/app/Dto/User/ManyRoleDto.php diff --git a/app/src/app/Enums/Lang.php b/app/application/app/Enums/Lang.php similarity index 100% rename from app/src/app/Enums/Lang.php rename to app/application/app/Enums/Lang.php diff --git a/app/src/app/Enums/Morph.php b/app/application/app/Enums/Morph.php similarity index 100% rename from app/src/app/Enums/Morph.php rename to app/application/app/Enums/Morph.php diff --git a/app/src/app/Enums/Permission.php b/app/application/app/Enums/Permission.php similarity index 100% rename from app/src/app/Enums/Permission.php rename to app/application/app/Enums/Permission.php diff --git a/app/src/app/Enums/StorageType.php b/app/application/app/Enums/StorageType.php similarity index 100% rename from app/src/app/Enums/StorageType.php rename to app/application/app/Enums/StorageType.php diff --git a/app/src/app/Enums/SystemRole.php b/app/application/app/Enums/SystemRole.php similarity index 100% rename from app/src/app/Enums/SystemRole.php rename to app/application/app/Enums/SystemRole.php diff --git a/app/src/app/Exceptions/Dto/Storage/FileException.php b/app/application/app/Exceptions/Dto/Storage/FileException.php similarity index 100% rename from app/src/app/Exceptions/Dto/Storage/FileException.php rename to app/application/app/Exceptions/Dto/Storage/FileException.php diff --git a/app/src/app/Exceptions/Dto/Storage/StorageException.php b/app/application/app/Exceptions/Dto/Storage/StorageException.php similarity index 100% rename from app/src/app/Exceptions/Dto/Storage/StorageException.php rename to app/application/app/Exceptions/Dto/Storage/StorageException.php diff --git a/app/src/app/Exceptions/Dto/Storage/StoragesException.php b/app/application/app/Exceptions/Dto/Storage/StoragesException.php similarity index 100% rename from app/src/app/Exceptions/Dto/Storage/StoragesException.php rename to app/application/app/Exceptions/Dto/Storage/StoragesException.php diff --git a/app/src/app/Exceptions/Dto/User/ManyRoleDtoException.php b/app/application/app/Exceptions/Dto/User/ManyRoleDtoException.php similarity index 100% rename from app/src/app/Exceptions/Dto/User/ManyRoleDtoException.php rename to app/application/app/Exceptions/Dto/User/ManyRoleDtoException.php diff --git a/app/src/app/Exceptions/Services/Storage/StorageCommandHandlerException.php b/app/application/app/Exceptions/Services/Storage/StorageCommandHandlerException.php similarity index 100% rename from app/src/app/Exceptions/Services/Storage/StorageCommandHandlerException.php rename to app/application/app/Exceptions/Services/Storage/StorageCommandHandlerException.php diff --git a/app/src/app/Exceptions/Services/Storage/StorageSaveFileException.php b/app/application/app/Exceptions/Services/Storage/StorageSaveFileException.php similarity index 100% rename from app/src/app/Exceptions/Services/Storage/StorageSaveFileException.php rename to app/application/app/Exceptions/Services/Storage/StorageSaveFileException.php diff --git a/app/src/app/Helpers/Helpers.php b/app/application/app/Helpers/Helpers.php similarity index 100% rename from app/src/app/Helpers/Helpers.php rename to app/application/app/Helpers/Helpers.php diff --git a/app/src/app/Http/Controllers/Admin/Controller.php b/app/application/app/Http/Controllers/Admin/Controller.php similarity index 100% rename from app/src/app/Http/Controllers/Admin/Controller.php rename to app/application/app/Http/Controllers/Admin/Controller.php diff --git a/app/src/app/Http/Controllers/Admin/DashboardController.php b/app/application/app/Http/Controllers/Admin/DashboardController.php similarity index 100% rename from app/src/app/Http/Controllers/Admin/DashboardController.php rename to app/application/app/Http/Controllers/Admin/DashboardController.php diff --git a/app/src/app/Http/Controllers/Admin/LanguagesController.php b/app/application/app/Http/Controllers/Admin/LanguagesController.php similarity index 100% rename from app/src/app/Http/Controllers/Admin/LanguagesController.php rename to app/application/app/Http/Controllers/Admin/LanguagesController.php diff --git a/app/src/app/Http/Controllers/Admin/ProjectsController.php b/app/application/app/Http/Controllers/Admin/ProjectsController.php similarity index 100% rename from app/src/app/Http/Controllers/Admin/ProjectsController.php rename to app/application/app/Http/Controllers/Admin/ProjectsController.php diff --git a/app/src/app/Http/Controllers/Admin/RolesController.php b/app/application/app/Http/Controllers/Admin/RolesController.php similarity index 100% rename from app/src/app/Http/Controllers/Admin/RolesController.php rename to app/application/app/Http/Controllers/Admin/RolesController.php diff --git a/app/src/app/Http/Controllers/Admin/UsersController.php b/app/application/app/Http/Controllers/Admin/UsersController.php similarity index 100% rename from app/src/app/Http/Controllers/Admin/UsersController.php rename to app/application/app/Http/Controllers/Admin/UsersController.php diff --git a/app/src/app/Http/Controllers/AuthController.php b/app/application/app/Http/Controllers/AuthController.php similarity index 100% rename from app/src/app/Http/Controllers/AuthController.php rename to app/application/app/Http/Controllers/AuthController.php diff --git a/app/src/app/Http/Controllers/Controller.php b/app/application/app/Http/Controllers/Controller.php similarity index 100% rename from app/src/app/Http/Controllers/Controller.php rename to app/application/app/Http/Controllers/Controller.php diff --git a/app/src/app/Http/Controllers/Private/Controller.php b/app/application/app/Http/Controllers/Private/Controller.php similarity index 100% rename from app/src/app/Http/Controllers/Private/Controller.php rename to app/application/app/Http/Controllers/Private/Controller.php diff --git a/app/src/app/Http/Controllers/Private/ProfileController.php b/app/application/app/Http/Controllers/Private/ProfileController.php similarity index 100% rename from app/src/app/Http/Controllers/Private/ProfileController.php rename to app/application/app/Http/Controllers/Private/ProfileController.php diff --git a/app/src/app/Http/Controllers/Storage/Controller.php b/app/application/app/Http/Controllers/Storage/Controller.php similarity index 100% rename from app/src/app/Http/Controllers/Storage/Controller.php rename to app/application/app/Http/Controllers/Storage/Controller.php diff --git a/app/src/app/Http/Controllers/Storage/ImagesController.php b/app/application/app/Http/Controllers/Storage/ImagesController.php similarity index 100% rename from app/src/app/Http/Controllers/Storage/ImagesController.php rename to app/application/app/Http/Controllers/Storage/ImagesController.php diff --git a/app/src/app/Http/Middleware/AdminPanel.php b/app/application/app/Http/Middleware/AdminPanel.php similarity index 100% rename from app/src/app/Http/Middleware/AdminPanel.php rename to app/application/app/Http/Middleware/AdminPanel.php diff --git a/app/src/app/Http/Middleware/UserLocale.php b/app/application/app/Http/Middleware/UserLocale.php similarity index 100% rename from app/src/app/Http/Middleware/UserLocale.php rename to app/application/app/Http/Middleware/UserLocale.php diff --git a/app/src/app/Http/Requests/Admin/Languages/NewLanguageRequest.php b/app/application/app/Http/Requests/Admin/Languages/NewLanguageRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Languages/NewLanguageRequest.php rename to app/application/app/Http/Requests/Admin/Languages/NewLanguageRequest.php diff --git a/app/src/app/Http/Requests/Admin/Projects/IndexRequest.php b/app/application/app/Http/Requests/Admin/Projects/IndexRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Projects/IndexRequest.php rename to app/application/app/Http/Requests/Admin/Projects/IndexRequest.php diff --git a/app/src/app/Http/Requests/Admin/Projects/StoreUpdateRequest.php b/app/application/app/Http/Requests/Admin/Projects/StoreUpdateRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Projects/StoreUpdateRequest.php rename to app/application/app/Http/Requests/Admin/Projects/StoreUpdateRequest.php diff --git a/app/src/app/Http/Requests/Admin/Roles/IndexRequest.php b/app/application/app/Http/Requests/Admin/Roles/IndexRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Roles/IndexRequest.php rename to app/application/app/Http/Requests/Admin/Roles/IndexRequest.php diff --git a/app/src/app/Http/Requests/Admin/Roles/StoreUpdateRequest.php b/app/application/app/Http/Requests/Admin/Roles/StoreUpdateRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Roles/StoreUpdateRequest.php rename to app/application/app/Http/Requests/Admin/Roles/StoreUpdateRequest.php diff --git a/app/src/app/Http/Requests/Admin/Users/IndexRequest.php b/app/application/app/Http/Requests/Admin/Users/IndexRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Users/IndexRequest.php rename to app/application/app/Http/Requests/Admin/Users/IndexRequest.php diff --git a/app/src/app/Http/Requests/Admin/Users/StoreUpdateRequest.php b/app/application/app/Http/Requests/Admin/Users/StoreUpdateRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Users/StoreUpdateRequest.php rename to app/application/app/Http/Requests/Admin/Users/StoreUpdateRequest.php diff --git a/app/src/app/Http/Requests/Admin/Users/UpdatePasswordRequest.php b/app/application/app/Http/Requests/Admin/Users/UpdatePasswordRequest.php similarity index 100% rename from app/src/app/Http/Requests/Admin/Users/UpdatePasswordRequest.php rename to app/application/app/Http/Requests/Admin/Users/UpdatePasswordRequest.php diff --git a/app/src/app/Http/Requests/AuthorizationRequest.php b/app/application/app/Http/Requests/AuthorizationRequest.php similarity index 100% rename from app/src/app/Http/Requests/AuthorizationRequest.php rename to app/application/app/Http/Requests/AuthorizationRequest.php diff --git a/app/src/app/Http/Requests/Private/Profile/UpdatePasswordRequest.php b/app/application/app/Http/Requests/Private/Profile/UpdatePasswordRequest.php similarity index 100% rename from app/src/app/Http/Requests/Private/Profile/UpdatePasswordRequest.php rename to app/application/app/Http/Requests/Private/Profile/UpdatePasswordRequest.php diff --git a/app/src/app/Http/Requests/Private/Profile/UpdateRequest.php b/app/application/app/Http/Requests/Private/Profile/UpdateRequest.php similarity index 100% rename from app/src/app/Http/Requests/Private/Profile/UpdateRequest.php rename to app/application/app/Http/Requests/Private/Profile/UpdateRequest.php diff --git a/app/src/app/Http/Requests/Private/Profile/UpdateSettingsRequest.php b/app/application/app/Http/Requests/Private/Profile/UpdateSettingsRequest.php similarity index 100% rename from app/src/app/Http/Requests/Private/Profile/UpdateSettingsRequest.php rename to app/application/app/Http/Requests/Private/Profile/UpdateSettingsRequest.php diff --git a/app/src/app/Http/Requests/Storage/ImageRequest.php b/app/application/app/Http/Requests/Storage/ImageRequest.php similarity index 100% rename from app/src/app/Http/Requests/Storage/ImageRequest.php rename to app/application/app/Http/Requests/Storage/ImageRequest.php diff --git a/app/src/app/Http/Resources/Admin/Languages/NewLanguage.php b/app/application/app/Http/Resources/Admin/Languages/NewLanguage.php similarity index 100% rename from app/src/app/Http/Resources/Admin/Languages/NewLanguage.php rename to app/application/app/Http/Resources/Admin/Languages/NewLanguage.php diff --git a/app/src/app/Http/Resources/Storage/Upload.php b/app/application/app/Http/Resources/Storage/Upload.php similarity index 100% rename from app/src/app/Http/Resources/Storage/Upload.php rename to app/application/app/Http/Resources/Storage/Upload.php diff --git a/app/src/app/Models/Project.php b/app/application/app/Models/Project.php similarity index 100% rename from app/src/app/Models/Project.php rename to app/application/app/Models/Project.php diff --git a/app/src/app/Models/ProjectLanguage.php b/app/application/app/Models/ProjectLanguage.php similarity index 100% rename from app/src/app/Models/ProjectLanguage.php rename to app/application/app/Models/ProjectLanguage.php diff --git a/app/src/app/Models/Role.php b/app/application/app/Models/Role.php similarity index 100% rename from app/src/app/Models/Role.php rename to app/application/app/Models/Role.php diff --git a/app/src/app/Models/RolePermission.php b/app/application/app/Models/RolePermission.php similarity index 100% rename from app/src/app/Models/RolePermission.php rename to app/application/app/Models/RolePermission.php diff --git a/app/src/app/Models/Scopes/SortScope.php b/app/application/app/Models/Scopes/SortScope.php similarity index 100% rename from app/src/app/Models/Scopes/SortScope.php rename to app/application/app/Models/Scopes/SortScope.php diff --git a/app/src/app/Models/Storage.php b/app/application/app/Models/Storage.php similarity index 100% rename from app/src/app/Models/Storage.php rename to app/application/app/Models/Storage.php diff --git a/app/src/app/Models/Traits/StorageTrait.php b/app/application/app/Models/Traits/StorageTrait.php similarity index 100% rename from app/src/app/Models/Traits/StorageTrait.php rename to app/application/app/Models/Traits/StorageTrait.php diff --git a/app/src/app/Models/User.php b/app/application/app/Models/User.php similarity index 100% rename from app/src/app/Models/User.php rename to app/application/app/Models/User.php diff --git a/app/src/app/Policies/AdminPanel.php b/app/application/app/Policies/AdminPanel.php similarity index 100% rename from app/src/app/Policies/AdminPanel.php rename to app/application/app/Policies/AdminPanel.php diff --git a/app/src/app/Policies/Policy.php b/app/application/app/Policies/Policy.php similarity index 100% rename from app/src/app/Policies/Policy.php rename to app/application/app/Policies/Policy.php diff --git a/app/src/app/Policies/ProjectPolicy.php b/app/application/app/Policies/ProjectPolicy.php similarity index 100% rename from app/src/app/Policies/ProjectPolicy.php rename to app/application/app/Policies/ProjectPolicy.php diff --git a/app/src/app/Policies/RolePolicy.php b/app/application/app/Policies/RolePolicy.php similarity index 100% rename from app/src/app/Policies/RolePolicy.php rename to app/application/app/Policies/RolePolicy.php diff --git a/app/src/app/Policies/UserPolicy.php b/app/application/app/Policies/UserPolicy.php similarity index 100% rename from app/src/app/Policies/UserPolicy.php rename to app/application/app/Policies/UserPolicy.php diff --git a/app/src/app/Providers/AppServiceProvider.php b/app/application/app/Providers/AppServiceProvider.php similarity index 100% rename from app/src/app/Providers/AppServiceProvider.php rename to app/application/app/Providers/AppServiceProvider.php diff --git a/app/src/app/Repositories/ProjectRepository.php b/app/application/app/Repositories/ProjectRepository.php similarity index 100% rename from app/src/app/Repositories/ProjectRepository.php rename to app/application/app/Repositories/ProjectRepository.php diff --git a/app/src/app/Repositories/RoleRepository.php b/app/application/app/Repositories/RoleRepository.php similarity index 100% rename from app/src/app/Repositories/RoleRepository.php rename to app/application/app/Repositories/RoleRepository.php diff --git a/app/src/app/Repositories/StorageRepository.php b/app/application/app/Repositories/StorageRepository.php similarity index 100% rename from app/src/app/Repositories/StorageRepository.php rename to app/application/app/Repositories/StorageRepository.php diff --git a/app/src/app/Repositories/UserRepository.php b/app/application/app/Repositories/UserRepository.php similarity index 100% rename from app/src/app/Repositories/UserRepository.php rename to app/application/app/Repositories/UserRepository.php diff --git a/app/src/app/Rules/HttpHost.php b/app/application/app/Rules/HttpHost.php similarity index 100% rename from app/src/app/Rules/HttpHost.php rename to app/application/app/Rules/HttpHost.php diff --git a/app/src/app/Rules/Permission.php b/app/application/app/Rules/Permission.php similarity index 100% rename from app/src/app/Rules/Permission.php rename to app/application/app/Rules/Permission.php diff --git a/app/src/app/ServiceResults/Admin/LanguageService/NewLanguageResult.php b/app/application/app/ServiceResults/Admin/LanguageService/NewLanguageResult.php similarity index 100% rename from app/src/app/ServiceResults/Admin/LanguageService/NewLanguageResult.php rename to app/application/app/ServiceResults/Admin/LanguageService/NewLanguageResult.php diff --git a/app/src/app/ServiceResults/ServiceResult.php b/app/application/app/ServiceResults/ServiceResult.php similarity index 100% rename from app/src/app/ServiceResults/ServiceResult.php rename to app/application/app/ServiceResults/ServiceResult.php diff --git a/app/src/app/ServiceResults/ServiceResultArray.php b/app/application/app/ServiceResults/ServiceResultArray.php similarity index 100% rename from app/src/app/ServiceResults/ServiceResultArray.php rename to app/application/app/ServiceResults/ServiceResultArray.php diff --git a/app/src/app/ServiceResults/ServiceResultError.php b/app/application/app/ServiceResults/ServiceResultError.php similarity index 100% rename from app/src/app/ServiceResults/ServiceResultError.php rename to app/application/app/ServiceResults/ServiceResultError.php diff --git a/app/src/app/ServiceResults/ServiceResultSuccess.php b/app/application/app/ServiceResults/ServiceResultSuccess.php similarity index 100% rename from app/src/app/ServiceResults/ServiceResultSuccess.php rename to app/application/app/ServiceResults/ServiceResultSuccess.php diff --git a/app/src/app/ServiceResults/Storage/SaveDeleteStorageResult.php b/app/application/app/ServiceResults/Storage/SaveDeleteStorageResult.php similarity index 100% rename from app/src/app/ServiceResults/Storage/SaveDeleteStorageResult.php rename to app/application/app/ServiceResults/Storage/SaveDeleteStorageResult.php diff --git a/app/src/app/ServiceResults/Storage/UploadResult.php b/app/application/app/ServiceResults/Storage/UploadResult.php similarity index 100% rename from app/src/app/ServiceResults/Storage/UploadResult.php rename to app/application/app/ServiceResults/Storage/UploadResult.php diff --git a/app/src/app/ServiceResults/StoreUpdateResult.php b/app/application/app/ServiceResults/StoreUpdateResult.php similarity index 100% rename from app/src/app/ServiceResults/StoreUpdateResult.php rename to app/application/app/ServiceResults/StoreUpdateResult.php diff --git a/app/src/app/Services/Admin/LanguageService.php b/app/application/app/Services/Admin/LanguageService.php similarity index 100% rename from app/src/app/Services/Admin/LanguageService.php rename to app/application/app/Services/Admin/LanguageService.php diff --git a/app/src/app/Services/Admin/ProjectService.php b/app/application/app/Services/Admin/ProjectService.php similarity index 100% rename from app/src/app/Services/Admin/ProjectService.php rename to app/application/app/Services/Admin/ProjectService.php diff --git a/app/src/app/Services/Admin/RoleService.php b/app/application/app/Services/Admin/RoleService.php similarity index 100% rename from app/src/app/Services/Admin/RoleService.php rename to app/application/app/Services/Admin/RoleService.php diff --git a/app/src/app/Services/Admin/UserService.php b/app/application/app/Services/Admin/UserService.php similarity index 100% rename from app/src/app/Services/Admin/UserService.php rename to app/application/app/Services/Admin/UserService.php diff --git a/app/src/app/Services/AuthService.php b/app/application/app/Services/AuthService.php similarity index 100% rename from app/src/app/Services/AuthService.php rename to app/application/app/Services/AuthService.php diff --git a/app/src/app/Services/Private/ProfileService.php b/app/application/app/Services/Private/ProfileService.php similarity index 100% rename from app/src/app/Services/Private/ProfileService.php rename to app/application/app/Services/Private/ProfileService.php diff --git a/app/src/app/Services/Project/BuilderCommand.php b/app/application/app/Services/Project/BuilderCommand.php similarity index 100% rename from app/src/app/Services/Project/BuilderCommand.php rename to app/application/app/Services/Project/BuilderCommand.php diff --git a/app/src/app/Services/Project/ProjectCommandHandler.php b/app/application/app/Services/Project/ProjectCommandHandler.php similarity index 100% rename from app/src/app/Services/Project/ProjectCommandHandler.php rename to app/application/app/Services/Project/ProjectCommandHandler.php diff --git a/app/src/app/Services/ProjectLanguage/ModelSyncCommand.php b/app/application/app/Services/ProjectLanguage/ModelSyncCommand.php similarity index 100% rename from app/src/app/Services/ProjectLanguage/ModelSyncCommand.php rename to app/application/app/Services/ProjectLanguage/ModelSyncCommand.php diff --git a/app/src/app/Services/Role/BuilderCommand.php b/app/application/app/Services/Role/BuilderCommand.php similarity index 100% rename from app/src/app/Services/Role/BuilderCommand.php rename to app/application/app/Services/Role/BuilderCommand.php diff --git a/app/src/app/Services/Role/CreateAdminRoleForProjectCommand.php b/app/application/app/Services/Role/CreateAdminRoleForProjectCommand.php similarity index 100% rename from app/src/app/Services/Role/CreateAdminRoleForProjectCommand.php rename to app/application/app/Services/Role/CreateAdminRoleForProjectCommand.php diff --git a/app/src/app/Services/Role/RoleCommandHandler.php b/app/application/app/Services/Role/RoleCommandHandler.php similarity index 100% rename from app/src/app/Services/Role/RoleCommandHandler.php rename to app/application/app/Services/Role/RoleCommandHandler.php diff --git a/app/src/app/Services/Role/RoleSyncPermissionsCommandHandler.php b/app/application/app/Services/Role/RoleSyncPermissionsCommandHandler.php similarity index 100% rename from app/src/app/Services/Role/RoleSyncPermissionsCommandHandler.php rename to app/application/app/Services/Role/RoleSyncPermissionsCommandHandler.php diff --git a/app/src/app/Services/Search/CreateSearchInstanceCommand.php b/app/application/app/Services/Search/CreateSearchInstanceCommand.php similarity index 100% rename from app/src/app/Services/Search/CreateSearchInstanceCommand.php rename to app/application/app/Services/Search/CreateSearchInstanceCommand.php diff --git a/app/src/app/Services/Search/Search.php b/app/application/app/Services/Search/Search.php similarity index 100% rename from app/src/app/Services/Search/Search.php rename to app/application/app/Services/Search/Search.php diff --git a/app/src/app/Services/Service.php b/app/application/app/Services/Service.php similarity index 100% rename from app/src/app/Services/Service.php rename to app/application/app/Services/Service.php diff --git a/app/src/app/Services/Storage/Image/ResizeCommandHandler.php b/app/application/app/Services/Storage/Image/ResizeCommandHandler.php similarity index 100% rename from app/src/app/Services/Storage/Image/ResizeCommandHandler.php rename to app/application/app/Services/Storage/Image/ResizeCommandHandler.php diff --git a/app/src/app/Services/Storage/ImageService.php b/app/application/app/Services/Storage/ImageService.php similarity index 100% rename from app/src/app/Services/Storage/ImageService.php rename to app/application/app/Services/Storage/ImageService.php diff --git a/app/src/app/Services/Storage/StorageCommandHandler.php b/app/application/app/Services/Storage/StorageCommandHandler.php similarity index 100% rename from app/src/app/Services/Storage/StorageCommandHandler.php rename to app/application/app/Services/Storage/StorageCommandHandler.php diff --git a/app/src/app/Services/Storage/StorageService.php b/app/application/app/Services/Storage/StorageService.php similarity index 100% rename from app/src/app/Services/Storage/StorageService.php rename to app/application/app/Services/Storage/StorageService.php diff --git a/app/src/app/Services/Storage/ValidationService.php b/app/application/app/Services/Storage/ValidationService.php similarity index 100% rename from app/src/app/Services/Storage/ValidationService.php rename to app/application/app/Services/Storage/ValidationService.php diff --git a/app/src/app/Services/User/BuilderCommand.php b/app/application/app/Services/User/BuilderCommand.php similarity index 100% rename from app/src/app/Services/User/BuilderCommand.php rename to app/application/app/Services/User/BuilderCommand.php diff --git a/app/src/app/Services/User/UserCommandHandler.php b/app/application/app/Services/User/UserCommandHandler.php similarity index 100% rename from app/src/app/Services/User/UserCommandHandler.php rename to app/application/app/Services/User/UserCommandHandler.php diff --git a/app/src/app/View/Components/Admin/Layout.php b/app/application/app/View/Components/Admin/Layout.php similarity index 100% rename from app/src/app/View/Components/Admin/Layout.php rename to app/application/app/View/Components/Admin/Layout.php diff --git a/app/src/app/View/Components/AuthLayout.php b/app/application/app/View/Components/AuthLayout.php similarity index 100% rename from app/src/app/View/Components/AuthLayout.php rename to app/application/app/View/Components/AuthLayout.php diff --git a/app/src/app/View/Components/Private/Layout.php b/app/application/app/View/Components/Private/Layout.php similarity index 100% rename from app/src/app/View/Components/Private/Layout.php rename to app/application/app/View/Components/Private/Layout.php diff --git a/app/src/app/View/Components/PrivateLayout.php b/app/application/app/View/Components/PrivateLayout.php similarity index 100% rename from app/src/app/View/Components/PrivateLayout.php rename to app/application/app/View/Components/PrivateLayout.php diff --git a/app/src/app/View/Components/Volt/Forms/Checkbox.php b/app/application/app/View/Components/Volt/Forms/Checkbox.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/Checkbox.php rename to app/application/app/View/Components/Volt/Forms/Checkbox.php diff --git a/app/src/app/View/Components/Volt/Forms/Form.php b/app/application/app/View/Components/Volt/Forms/Form.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/Form.php rename to app/application/app/View/Components/Volt/Forms/Form.php diff --git a/app/src/app/View/Components/Volt/Forms/Input.php b/app/application/app/View/Components/Volt/Forms/Input.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/Input.php rename to app/application/app/View/Components/Volt/Forms/Input.php diff --git a/app/src/app/View/Components/Volt/Forms/InputTypeHidden.php b/app/application/app/View/Components/Volt/Forms/InputTypeHidden.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/InputTypeHidden.php rename to app/application/app/View/Components/Volt/Forms/InputTypeHidden.php diff --git a/app/src/app/View/Components/Volt/Forms/Languages.php b/app/application/app/View/Components/Volt/Forms/Languages.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/Languages.php rename to app/application/app/View/Components/Volt/Forms/Languages.php diff --git a/app/src/app/View/Components/Volt/Forms/MultiCheckbox.php b/app/application/app/View/Components/Volt/Forms/MultiCheckbox.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/MultiCheckbox.php rename to app/application/app/View/Components/Volt/Forms/MultiCheckbox.php diff --git a/app/src/app/View/Components/Volt/Forms/PermissionsForRole.php b/app/application/app/View/Components/Volt/Forms/PermissionsForRole.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/PermissionsForRole.php rename to app/application/app/View/Components/Volt/Forms/PermissionsForRole.php diff --git a/app/src/app/View/Components/Volt/Forms/Select.php b/app/application/app/View/Components/Volt/Forms/Select.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/Select.php rename to app/application/app/View/Components/Volt/Forms/Select.php diff --git a/app/src/app/View/Components/Volt/Forms/Upload/Image.php b/app/application/app/View/Components/Volt/Forms/Upload/Image.php similarity index 100% rename from app/src/app/View/Components/Volt/Forms/Upload/Image.php rename to app/application/app/View/Components/Volt/Forms/Upload/Image.php diff --git a/app/src/artisan b/app/application/artisan similarity index 100% rename from app/src/artisan rename to app/application/artisan diff --git a/app/src/bootstrap/app.php b/app/application/bootstrap/app.php similarity index 100% rename from app/src/bootstrap/app.php rename to app/application/bootstrap/app.php diff --git a/app/src/bootstrap/cache/.gitignore b/app/application/bootstrap/cache/.gitignore similarity index 100% rename from app/src/bootstrap/cache/.gitignore rename to app/application/bootstrap/cache/.gitignore diff --git a/app/src/bootstrap/providers.php b/app/application/bootstrap/providers.php similarity index 100% rename from app/src/bootstrap/providers.php rename to app/application/bootstrap/providers.php diff --git a/app/src/composer.json b/app/application/composer.json similarity index 100% rename from app/src/composer.json rename to app/application/composer.json diff --git a/app/src/composer.lock b/app/application/composer.lock similarity index 100% rename from app/src/composer.lock rename to app/application/composer.lock diff --git a/app/src/config/app.php b/app/application/config/app.php similarity index 100% rename from app/src/config/app.php rename to app/application/config/app.php diff --git a/app/src/config/auth.php b/app/application/config/auth.php similarity index 100% rename from app/src/config/auth.php rename to app/application/config/auth.php diff --git a/app/src/config/cache.php b/app/application/config/cache.php similarity index 100% rename from app/src/config/cache.php rename to app/application/config/cache.php diff --git a/app/src/config/database.php b/app/application/config/database.php similarity index 100% rename from app/src/config/database.php rename to app/application/config/database.php diff --git a/app/src/config/filesystems.php b/app/application/config/filesystems.php similarity index 100% rename from app/src/config/filesystems.php rename to app/application/config/filesystems.php diff --git a/app/src/config/image.php b/app/application/config/image.php similarity index 100% rename from app/src/config/image.php rename to app/application/config/image.php diff --git a/app/src/config/logging.php b/app/application/config/logging.php similarity index 100% rename from app/src/config/logging.php rename to app/application/config/logging.php diff --git a/app/src/config/mail.php b/app/application/config/mail.php similarity index 100% rename from app/src/config/mail.php rename to app/application/config/mail.php diff --git a/app/src/config/queue.php b/app/application/config/queue.php similarity index 100% rename from app/src/config/queue.php rename to app/application/config/queue.php diff --git a/app/src/config/rate_limiting.php b/app/application/config/rate_limiting.php similarity index 100% rename from app/src/config/rate_limiting.php rename to app/application/config/rate_limiting.php diff --git a/app/src/config/services.php b/app/application/config/services.php similarity index 100% rename from app/src/config/services.php rename to app/application/config/services.php diff --git a/app/src/config/session.php b/app/application/config/session.php similarity index 100% rename from app/src/config/session.php rename to app/application/config/session.php diff --git a/app/src/config/storage.php b/app/application/config/storage.php similarity index 100% rename from app/src/config/storage.php rename to app/application/config/storage.php diff --git a/app/src/database/.gitignore b/app/application/database/.gitignore similarity index 100% rename from app/src/database/.gitignore rename to app/application/database/.gitignore diff --git a/app/src/database/factories/UserFactory.php b/app/application/database/factories/UserFactory.php similarity index 100% rename from app/src/database/factories/UserFactory.php rename to app/application/database/factories/UserFactory.php diff --git a/app/src/database/migrations/0001_01_01_000000_create_users_table.php b/app/application/database/migrations/0001_01_01_000000_create_users_table.php similarity index 100% rename from app/src/database/migrations/0001_01_01_000000_create_users_table.php rename to app/application/database/migrations/0001_01_01_000000_create_users_table.php diff --git a/app/src/database/migrations/0001_01_01_000001_create_cache_table.php b/app/application/database/migrations/0001_01_01_000001_create_cache_table.php similarity index 100% rename from app/src/database/migrations/0001_01_01_000001_create_cache_table.php rename to app/application/database/migrations/0001_01_01_000001_create_cache_table.php diff --git a/app/src/database/migrations/0001_01_01_000002_create_jobs_table.php b/app/application/database/migrations/0001_01_01_000002_create_jobs_table.php similarity index 100% rename from app/src/database/migrations/0001_01_01_000002_create_jobs_table.php rename to app/application/database/migrations/0001_01_01_000002_create_jobs_table.php diff --git a/app/src/database/migrations/2024_04_01_184305_roles.php b/app/application/database/migrations/2024_04_01_184305_roles.php similarity index 100% rename from app/src/database/migrations/2024_04_01_184305_roles.php rename to app/application/database/migrations/2024_04_01_184305_roles.php diff --git a/app/src/database/migrations/2024_04_03_062346_create_projects.php b/app/application/database/migrations/2024_04_03_062346_create_projects.php similarity index 100% rename from app/src/database/migrations/2024_04_03_062346_create_projects.php rename to app/application/database/migrations/2024_04_03_062346_create_projects.php diff --git a/app/src/database/seeders/DatabaseSeeder.php b/app/application/database/seeders/DatabaseSeeder.php similarity index 100% rename from app/src/database/seeders/DatabaseSeeder.php rename to app/application/database/seeders/DatabaseSeeder.php diff --git a/app/src/lang/en.json b/app/application/lang/en.json similarity index 100% rename from app/src/lang/en.json rename to app/application/lang/en.json diff --git a/app/src/lang/en/actions.php b/app/application/lang/en/actions.php similarity index 100% rename from app/src/lang/en/actions.php rename to app/application/lang/en/actions.php diff --git a/app/src/lang/en/admin-sections.php b/app/application/lang/en/admin-sections.php similarity index 100% rename from app/src/lang/en/admin-sections.php rename to app/application/lang/en/admin-sections.php diff --git a/app/src/lang/en/auth.php b/app/application/lang/en/auth.php similarity index 100% rename from app/src/lang/en/auth.php rename to app/application/lang/en/auth.php diff --git a/app/src/lang/en/http-statuses.php b/app/application/lang/en/http-statuses.php similarity index 100% rename from app/src/lang/en/http-statuses.php rename to app/application/lang/en/http-statuses.php diff --git a/app/src/lang/en/pagination.php b/app/application/lang/en/pagination.php similarity index 100% rename from app/src/lang/en/pagination.php rename to app/application/lang/en/pagination.php diff --git a/app/src/lang/en/passwords.php b/app/application/lang/en/passwords.php similarity index 100% rename from app/src/lang/en/passwords.php rename to app/application/lang/en/passwords.php diff --git a/app/src/lang/en/permissions.php b/app/application/lang/en/permissions.php similarity index 100% rename from app/src/lang/en/permissions.php rename to app/application/lang/en/permissions.php diff --git a/app/src/lang/en/storage.php b/app/application/lang/en/storage.php similarity index 100% rename from app/src/lang/en/storage.php rename to app/application/lang/en/storage.php diff --git a/app/src/lang/en/validation.php b/app/application/lang/en/validation.php similarity index 100% rename from app/src/lang/en/validation.php rename to app/application/lang/en/validation.php diff --git a/app/src/lang/ru.json b/app/application/lang/ru.json similarity index 100% rename from app/src/lang/ru.json rename to app/application/lang/ru.json diff --git a/app/src/lang/ru/actions.php b/app/application/lang/ru/actions.php similarity index 100% rename from app/src/lang/ru/actions.php rename to app/application/lang/ru/actions.php diff --git a/app/src/lang/ru/admin-sections.php b/app/application/lang/ru/admin-sections.php similarity index 100% rename from app/src/lang/ru/admin-sections.php rename to app/application/lang/ru/admin-sections.php diff --git a/app/src/lang/ru/auth.php b/app/application/lang/ru/auth.php similarity index 100% rename from app/src/lang/ru/auth.php rename to app/application/lang/ru/auth.php diff --git a/app/src/lang/ru/http-statuses.php b/app/application/lang/ru/http-statuses.php similarity index 100% rename from app/src/lang/ru/http-statuses.php rename to app/application/lang/ru/http-statuses.php diff --git a/app/src/lang/ru/pagination.php b/app/application/lang/ru/pagination.php similarity index 100% rename from app/src/lang/ru/pagination.php rename to app/application/lang/ru/pagination.php diff --git a/app/src/lang/ru/passwords.php b/app/application/lang/ru/passwords.php similarity index 100% rename from app/src/lang/ru/passwords.php rename to app/application/lang/ru/passwords.php diff --git a/app/src/lang/ru/permissions.php b/app/application/lang/ru/permissions.php similarity index 100% rename from app/src/lang/ru/permissions.php rename to app/application/lang/ru/permissions.php diff --git a/app/src/lang/ru/storage.php b/app/application/lang/ru/storage.php similarity index 100% rename from app/src/lang/ru/storage.php rename to app/application/lang/ru/storage.php diff --git a/app/src/lang/ru/validation.php b/app/application/lang/ru/validation.php similarity index 100% rename from app/src/lang/ru/validation.php rename to app/application/lang/ru/validation.php diff --git a/app/src/package-lock.json b/app/application/package-lock.json similarity index 100% rename from app/src/package-lock.json rename to app/application/package-lock.json diff --git a/app/src/package.json b/app/application/package.json similarity index 100% rename from app/src/package.json rename to app/application/package.json diff --git a/app/src/phpunit.xml b/app/application/phpunit.xml similarity index 100% rename from app/src/phpunit.xml rename to app/application/phpunit.xml diff --git a/app/src/public/.htaccess b/app/application/public/.htaccess similarity index 100% rename from app/src/public/.htaccess rename to app/application/public/.htaccess diff --git a/app/src/public/favicon.ico b/app/application/public/favicon.ico similarity index 100% rename from app/src/public/favicon.ico rename to app/application/public/favicon.ico diff --git a/app/src/public/index.php b/app/application/public/index.php similarity index 100% rename from app/src/public/index.php rename to app/application/public/index.php diff --git a/app/src/public/robots.txt b/app/application/public/robots.txt similarity index 100% rename from app/src/public/robots.txt rename to app/application/public/robots.txt diff --git a/app/src/resources/views/admin/_scripts/_click-confirm.blade.php b/app/application/resources/views/admin/_scripts/_click-confirm.blade.php similarity index 100% rename from app/src/resources/views/admin/_scripts/_click-confirm.blade.php rename to app/application/resources/views/admin/_scripts/_click-confirm.blade.php diff --git a/app/src/resources/views/admin/dashboard/index.blade.php b/app/application/resources/views/admin/dashboard/index.blade.php similarity index 100% rename from app/src/resources/views/admin/dashboard/index.blade.php rename to app/application/resources/views/admin/dashboard/index.blade.php diff --git a/app/src/resources/views/admin/layout/_navigation.blade.php b/app/application/resources/views/admin/layout/_navigation.blade.php similarity index 100% rename from app/src/resources/views/admin/layout/_navigation.blade.php rename to app/application/resources/views/admin/layout/_navigation.blade.php diff --git a/app/src/resources/views/admin/projects/_from.blade.php b/app/application/resources/views/admin/projects/_from.blade.php similarity index 100% rename from app/src/resources/views/admin/projects/_from.blade.php rename to app/application/resources/views/admin/projects/_from.blade.php diff --git a/app/src/resources/views/admin/projects/_top.blade.php b/app/application/resources/views/admin/projects/_top.blade.php similarity index 100% rename from app/src/resources/views/admin/projects/_top.blade.php rename to app/application/resources/views/admin/projects/_top.blade.php diff --git a/app/src/resources/views/admin/projects/create.blade.php b/app/application/resources/views/admin/projects/create.blade.php similarity index 100% rename from app/src/resources/views/admin/projects/create.blade.php rename to app/application/resources/views/admin/projects/create.blade.php diff --git a/app/src/resources/views/admin/projects/edit.blade.php b/app/application/resources/views/admin/projects/edit.blade.php similarity index 100% rename from app/src/resources/views/admin/projects/edit.blade.php rename to app/application/resources/views/admin/projects/edit.blade.php diff --git a/app/src/resources/views/admin/projects/index.blade.php b/app/application/resources/views/admin/projects/index.blade.php similarity index 100% rename from app/src/resources/views/admin/projects/index.blade.php rename to app/application/resources/views/admin/projects/index.blade.php diff --git a/app/src/resources/views/admin/roles/_from.blade.php b/app/application/resources/views/admin/roles/_from.blade.php similarity index 100% rename from app/src/resources/views/admin/roles/_from.blade.php rename to app/application/resources/views/admin/roles/_from.blade.php diff --git a/app/src/resources/views/admin/roles/_top.blade.php b/app/application/resources/views/admin/roles/_top.blade.php similarity index 100% rename from app/src/resources/views/admin/roles/_top.blade.php rename to app/application/resources/views/admin/roles/_top.blade.php diff --git a/app/src/resources/views/admin/roles/create.blade.php b/app/application/resources/views/admin/roles/create.blade.php similarity index 100% rename from app/src/resources/views/admin/roles/create.blade.php rename to app/application/resources/views/admin/roles/create.blade.php diff --git a/app/src/resources/views/admin/roles/edit.blade.php b/app/application/resources/views/admin/roles/edit.blade.php similarity index 100% rename from app/src/resources/views/admin/roles/edit.blade.php rename to app/application/resources/views/admin/roles/edit.blade.php diff --git a/app/src/resources/views/admin/roles/index.blade.php b/app/application/resources/views/admin/roles/index.blade.php similarity index 100% rename from app/src/resources/views/admin/roles/index.blade.php rename to app/application/resources/views/admin/roles/index.blade.php diff --git a/app/src/resources/views/admin/users/_from.blade.php b/app/application/resources/views/admin/users/_from.blade.php similarity index 100% rename from app/src/resources/views/admin/users/_from.blade.php rename to app/application/resources/views/admin/users/_from.blade.php diff --git a/app/src/resources/views/admin/users/_top.blade.php b/app/application/resources/views/admin/users/_top.blade.php similarity index 100% rename from app/src/resources/views/admin/users/_top.blade.php rename to app/application/resources/views/admin/users/_top.blade.php diff --git a/app/src/resources/views/admin/users/create.blade.php b/app/application/resources/views/admin/users/create.blade.php similarity index 100% rename from app/src/resources/views/admin/users/create.blade.php rename to app/application/resources/views/admin/users/create.blade.php diff --git a/app/src/resources/views/admin/users/edit.blade.php b/app/application/resources/views/admin/users/edit.blade.php similarity index 100% rename from app/src/resources/views/admin/users/edit.blade.php rename to app/application/resources/views/admin/users/edit.blade.php diff --git a/app/src/resources/views/admin/users/index.blade.php b/app/application/resources/views/admin/users/index.blade.php similarity index 100% rename from app/src/resources/views/admin/users/index.blade.php rename to app/application/resources/views/admin/users/index.blade.php diff --git a/app/src/resources/views/components/volt/forms/checkbox.blade.php b/app/application/resources/views/components/volt/forms/checkbox.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/checkbox.blade.php rename to app/application/resources/views/components/volt/forms/checkbox.blade.php diff --git a/app/src/resources/views/components/volt/forms/input-type-hidden.blade.php b/app/application/resources/views/components/volt/forms/input-type-hidden.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/input-type-hidden.blade.php rename to app/application/resources/views/components/volt/forms/input-type-hidden.blade.php diff --git a/app/src/resources/views/components/volt/forms/input.blade.php b/app/application/resources/views/components/volt/forms/input.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/input.blade.php rename to app/application/resources/views/components/volt/forms/input.blade.php diff --git a/app/src/resources/views/components/volt/forms/languages.blade.php b/app/application/resources/views/components/volt/forms/languages.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/languages.blade.php rename to app/application/resources/views/components/volt/forms/languages.blade.php diff --git a/app/src/resources/views/components/volt/forms/languages/input.blade.php b/app/application/resources/views/components/volt/forms/languages/input.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/languages/input.blade.php rename to app/application/resources/views/components/volt/forms/languages/input.blade.php diff --git a/app/src/resources/views/components/volt/forms/languages/language.blade.php b/app/application/resources/views/components/volt/forms/languages/language.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/languages/language.blade.php rename to app/application/resources/views/components/volt/forms/languages/language.blade.php diff --git a/app/src/resources/views/components/volt/forms/languages/radio.blade.php b/app/application/resources/views/components/volt/forms/languages/radio.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/languages/radio.blade.php rename to app/application/resources/views/components/volt/forms/languages/radio.blade.php diff --git a/app/src/resources/views/components/volt/forms/multi_checkbox.blade.php b/app/application/resources/views/components/volt/forms/multi_checkbox.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/multi_checkbox.blade.php rename to app/application/resources/views/components/volt/forms/multi_checkbox.blade.php diff --git a/app/src/resources/views/components/volt/forms/permissions_for_role.blade.php b/app/application/resources/views/components/volt/forms/permissions_for_role.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/permissions_for_role.blade.php rename to app/application/resources/views/components/volt/forms/permissions_for_role.blade.php diff --git a/app/src/resources/views/components/volt/forms/select.blade.php b/app/application/resources/views/components/volt/forms/select.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/select.blade.php rename to app/application/resources/views/components/volt/forms/select.blade.php diff --git a/app/src/resources/views/components/volt/forms/upload/image.blade.php b/app/application/resources/views/components/volt/forms/upload/image.blade.php similarity index 100% rename from app/src/resources/views/components/volt/forms/upload/image.blade.php rename to app/application/resources/views/components/volt/forms/upload/image.blade.php diff --git a/app/src/resources/views/layout/auth.blade.php b/app/application/resources/views/layout/auth.blade.php similarity index 100% rename from app/src/resources/views/layout/auth.blade.php rename to app/application/resources/views/layout/auth.blade.php diff --git a/app/src/resources/views/layout/private.blade.php b/app/application/resources/views/layout/private.blade.php similarity index 100% rename from app/src/resources/views/layout/private.blade.php rename to app/application/resources/views/layout/private.blade.php diff --git a/app/src/resources/views/layout/private/_errors.blade.php b/app/application/resources/views/layout/private/_errors.blade.php similarity index 100% rename from app/src/resources/views/layout/private/_errors.blade.php rename to app/application/resources/views/layout/private/_errors.blade.php diff --git a/app/src/resources/views/layout/private/_success.blade.php b/app/application/resources/views/layout/private/_success.blade.php similarity index 100% rename from app/src/resources/views/layout/private/_success.blade.php rename to app/application/resources/views/layout/private/_success.blade.php diff --git a/app/src/resources/views/login.blade.php b/app/application/resources/views/login.blade.php similarity index 100% rename from app/src/resources/views/login.blade.php rename to app/application/resources/views/login.blade.php diff --git a/app/src/resources/views/private/layout/_navigation.blade.php b/app/application/resources/views/private/layout/_navigation.blade.php similarity index 100% rename from app/src/resources/views/private/layout/_navigation.blade.php rename to app/application/resources/views/private/layout/_navigation.blade.php diff --git a/app/src/resources/views/private/profile/profile.blade.php b/app/application/resources/views/private/profile/profile.blade.php similarity index 100% rename from app/src/resources/views/private/profile/profile.blade.php rename to app/application/resources/views/private/profile/profile.blade.php diff --git a/app/src/resources/views/private/profile/settings.blade.php b/app/application/resources/views/private/profile/settings.blade.php similarity index 100% rename from app/src/resources/views/private/profile/settings.blade.php rename to app/application/resources/views/private/profile/settings.blade.php diff --git a/app/src/resources/volt/LICENSE.md b/app/application/resources/volt/LICENSE.md similarity index 100% rename from app/src/resources/volt/LICENSE.md rename to app/application/resources/volt/LICENSE.md diff --git a/app/src/resources/volt/images/illustrations/signin.svg b/app/application/resources/volt/images/illustrations/signin.svg similarity index 100% rename from app/src/resources/volt/images/illustrations/signin.svg rename to app/application/resources/volt/images/illustrations/signin.svg diff --git a/app/src/resources/volt/js/app.js b/app/application/resources/volt/js/app.js similarity index 100% rename from app/src/resources/volt/js/app.js rename to app/application/resources/volt/js/app.js diff --git a/app/src/resources/volt/js/bootstrap.js b/app/application/resources/volt/js/bootstrap.js similarity index 100% rename from app/src/resources/volt/js/bootstrap.js rename to app/application/resources/volt/js/bootstrap.js diff --git a/app/src/resources/volt/js/image.js b/app/application/resources/volt/js/image.js similarity index 100% rename from app/src/resources/volt/js/image.js rename to app/application/resources/volt/js/image.js diff --git a/app/src/resources/volt/js/volt.js b/app/application/resources/volt/js/volt.js similarity index 100% rename from app/src/resources/volt/js/volt.js rename to app/application/resources/volt/js/volt.js diff --git a/app/src/resources/volt/scss/_variables.scss b/app/application/resources/volt/scss/_variables.scss similarity index 100% rename from app/src/resources/volt/scss/_variables.scss rename to app/application/resources/volt/scss/_variables.scss diff --git a/app/src/resources/volt/scss/app.scss b/app/application/resources/volt/scss/app.scss similarity index 100% rename from app/src/resources/volt/scss/app.scss rename to app/application/resources/volt/scss/app.scss diff --git a/app/src/resources/volt/scss/volt/_components.scss b/app/application/resources/volt/scss/volt/_components.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_components.scss rename to app/application/resources/volt/scss/volt/_components.scss diff --git a/app/src/resources/volt/scss/volt/_forms.scss b/app/application/resources/volt/scss/volt/_forms.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_forms.scss rename to app/application/resources/volt/scss/volt/_forms.scss diff --git a/app/src/resources/volt/scss/volt/_functions.scss b/app/application/resources/volt/scss/volt/_functions.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_functions.scss rename to app/application/resources/volt/scss/volt/_functions.scss diff --git a/app/src/resources/volt/scss/volt/_layout.scss b/app/application/resources/volt/scss/volt/_layout.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_layout.scss rename to app/application/resources/volt/scss/volt/_layout.scss diff --git a/app/src/resources/volt/scss/volt/_mixins.scss b/app/application/resources/volt/scss/volt/_mixins.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_mixins.scss rename to app/application/resources/volt/scss/volt/_mixins.scss diff --git a/app/src/resources/volt/scss/volt/_utilities.scss b/app/application/resources/volt/scss/volt/_utilities.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_utilities.scss rename to app/application/resources/volt/scss/volt/_utilities.scss diff --git a/app/src/resources/volt/scss/volt/_variables.scss b/app/application/resources/volt/scss/volt/_variables.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_variables.scss rename to app/application/resources/volt/scss/volt/_variables.scss diff --git a/app/src/resources/volt/scss/volt/_vendor.scss b/app/application/resources/volt/scss/volt/_vendor.scss similarity index 100% rename from app/src/resources/volt/scss/volt/_vendor.scss rename to app/application/resources/volt/scss/volt/_vendor.scss diff --git a/app/src/resources/volt/scss/volt/components/_accordions.scss b/app/application/resources/volt/scss/volt/components/_accordions.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_accordions.scss rename to app/application/resources/volt/scss/volt/components/_accordions.scss diff --git a/app/src/resources/volt/scss/volt/components/_alerts.scss b/app/application/resources/volt/scss/volt/components/_alerts.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_alerts.scss rename to app/application/resources/volt/scss/volt/components/_alerts.scss diff --git a/app/src/resources/volt/scss/volt/components/_animations.scss b/app/application/resources/volt/scss/volt/components/_animations.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_animations.scss rename to app/application/resources/volt/scss/volt/components/_animations.scss diff --git a/app/src/resources/volt/scss/volt/components/_avatars.scss b/app/application/resources/volt/scss/volt/components/_avatars.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_avatars.scss rename to app/application/resources/volt/scss/volt/components/_avatars.scss diff --git a/app/src/resources/volt/scss/volt/components/_badge.scss b/app/application/resources/volt/scss/volt/components/_badge.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_badge.scss rename to app/application/resources/volt/scss/volt/components/_badge.scss diff --git a/app/src/resources/volt/scss/volt/components/_body.scss b/app/application/resources/volt/scss/volt/components/_body.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_body.scss rename to app/application/resources/volt/scss/volt/components/_body.scss diff --git a/app/src/resources/volt/scss/volt/components/_breadcrumb.scss b/app/application/resources/volt/scss/volt/components/_breadcrumb.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_breadcrumb.scss rename to app/application/resources/volt/scss/volt/components/_breadcrumb.scss diff --git a/app/src/resources/volt/scss/volt/components/_buttons.scss b/app/application/resources/volt/scss/volt/components/_buttons.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_buttons.scss rename to app/application/resources/volt/scss/volt/components/_buttons.scss diff --git a/app/src/resources/volt/scss/volt/components/_card.scss b/app/application/resources/volt/scss/volt/components/_card.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_card.scss rename to app/application/resources/volt/scss/volt/components/_card.scss diff --git a/app/src/resources/volt/scss/volt/components/_carousel.scss b/app/application/resources/volt/scss/volt/components/_carousel.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_carousel.scss rename to app/application/resources/volt/scss/volt/components/_carousel.scss diff --git a/app/src/resources/volt/scss/volt/components/_charts.scss b/app/application/resources/volt/scss/volt/components/_charts.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_charts.scss rename to app/application/resources/volt/scss/volt/components/_charts.scss diff --git a/app/src/resources/volt/scss/volt/components/_close.scss b/app/application/resources/volt/scss/volt/components/_close.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_close.scss rename to app/application/resources/volt/scss/volt/components/_close.scss diff --git a/app/src/resources/volt/scss/volt/components/_custom-forms.scss b/app/application/resources/volt/scss/volt/components/_custom-forms.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_custom-forms.scss rename to app/application/resources/volt/scss/volt/components/_custom-forms.scss diff --git a/app/src/resources/volt/scss/volt/components/_datepicker.scss b/app/application/resources/volt/scss/volt/components/_datepicker.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_datepicker.scss rename to app/application/resources/volt/scss/volt/components/_datepicker.scss diff --git a/app/src/resources/volt/scss/volt/components/_dropdown.scss b/app/application/resources/volt/scss/volt/components/_dropdown.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_dropdown.scss rename to app/application/resources/volt/scss/volt/components/_dropdown.scss diff --git a/app/src/resources/volt/scss/volt/components/_icons.scss b/app/application/resources/volt/scss/volt/components/_icons.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_icons.scss rename to app/application/resources/volt/scss/volt/components/_icons.scss diff --git a/app/src/resources/volt/scss/volt/components/_images.scss b/app/application/resources/volt/scss/volt/components/_images.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_images.scss rename to app/application/resources/volt/scss/volt/components/_images.scss diff --git a/app/src/resources/volt/scss/volt/components/_list-group.scss b/app/application/resources/volt/scss/volt/components/_list-group.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_list-group.scss rename to app/application/resources/volt/scss/volt/components/_list-group.scss diff --git a/app/src/resources/volt/scss/volt/components/_modal.scss b/app/application/resources/volt/scss/volt/components/_modal.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_modal.scss rename to app/application/resources/volt/scss/volt/components/_modal.scss diff --git a/app/src/resources/volt/scss/volt/components/_nav.scss b/app/application/resources/volt/scss/volt/components/_nav.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_nav.scss rename to app/application/resources/volt/scss/volt/components/_nav.scss diff --git a/app/src/resources/volt/scss/volt/components/_pagination.scss b/app/application/resources/volt/scss/volt/components/_pagination.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_pagination.scss rename to app/application/resources/volt/scss/volt/components/_pagination.scss diff --git a/app/src/resources/volt/scss/volt/components/_popover.scss b/app/application/resources/volt/scss/volt/components/_popover.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_popover.scss rename to app/application/resources/volt/scss/volt/components/_popover.scss diff --git a/app/src/resources/volt/scss/volt/components/_progress.scss b/app/application/resources/volt/scss/volt/components/_progress.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_progress.scss rename to app/application/resources/volt/scss/volt/components/_progress.scss diff --git a/app/src/resources/volt/scss/volt/components/_scrollbar.scss b/app/application/resources/volt/scss/volt/components/_scrollbar.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_scrollbar.scss rename to app/application/resources/volt/scss/volt/components/_scrollbar.scss diff --git a/app/src/resources/volt/scss/volt/components/_shapes.scss b/app/application/resources/volt/scss/volt/components/_shapes.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_shapes.scss rename to app/application/resources/volt/scss/volt/components/_shapes.scss diff --git a/app/src/resources/volt/scss/volt/components/_steps.scss b/app/application/resources/volt/scss/volt/components/_steps.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_steps.scss rename to app/application/resources/volt/scss/volt/components/_steps.scss diff --git a/app/src/resources/volt/scss/volt/components/_tables.scss b/app/application/resources/volt/scss/volt/components/_tables.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_tables.scss rename to app/application/resources/volt/scss/volt/components/_tables.scss diff --git a/app/src/resources/volt/scss/volt/components/_timelines.scss b/app/application/resources/volt/scss/volt/components/_timelines.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_timelines.scss rename to app/application/resources/volt/scss/volt/components/_timelines.scss diff --git a/app/src/resources/volt/scss/volt/components/_tooltip.scss b/app/application/resources/volt/scss/volt/components/_tooltip.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_tooltip.scss rename to app/application/resources/volt/scss/volt/components/_tooltip.scss diff --git a/app/src/resources/volt/scss/volt/components/_type.scss b/app/application/resources/volt/scss/volt/components/_type.scss similarity index 100% rename from app/src/resources/volt/scss/volt/components/_type.scss rename to app/application/resources/volt/scss/volt/components/_type.scss diff --git a/app/src/resources/volt/scss/volt/forms/_form-check.scss b/app/application/resources/volt/scss/volt/forms/_form-check.scss similarity index 100% rename from app/src/resources/volt/scss/volt/forms/_form-check.scss rename to app/application/resources/volt/scss/volt/forms/_form-check.scss diff --git a/app/src/resources/volt/scss/volt/forms/_form-control.scss b/app/application/resources/volt/scss/volt/forms/_form-control.scss similarity index 100% rename from app/src/resources/volt/scss/volt/forms/_form-control.scss rename to app/application/resources/volt/scss/volt/forms/_form-control.scss diff --git a/app/src/resources/volt/scss/volt/forms/_form-select.scss b/app/application/resources/volt/scss/volt/forms/_form-select.scss similarity index 100% rename from app/src/resources/volt/scss/volt/forms/_form-select.scss rename to app/application/resources/volt/scss/volt/forms/_form-select.scss diff --git a/app/src/resources/volt/scss/volt/forms/_input-group.scss b/app/application/resources/volt/scss/volt/forms/_input-group.scss similarity index 100% rename from app/src/resources/volt/scss/volt/forms/_input-group.scss rename to app/application/resources/volt/scss/volt/forms/_input-group.scss diff --git a/app/src/resources/volt/scss/volt/layout/_footer.scss b/app/application/resources/volt/scss/volt/layout/_footer.scss similarity index 100% rename from app/src/resources/volt/scss/volt/layout/_footer.scss rename to app/application/resources/volt/scss/volt/layout/_footer.scss diff --git a/app/src/resources/volt/scss/volt/layout/_navbar.scss b/app/application/resources/volt/scss/volt/layout/_navbar.scss similarity index 100% rename from app/src/resources/volt/scss/volt/layout/_navbar.scss rename to app/application/resources/volt/scss/volt/layout/_navbar.scss diff --git a/app/src/resources/volt/scss/volt/layout/_section.scss b/app/application/resources/volt/scss/volt/layout/_section.scss similarity index 100% rename from app/src/resources/volt/scss/volt/layout/_section.scss rename to app/application/resources/volt/scss/volt/layout/_section.scss diff --git a/app/src/resources/volt/scss/volt/layout/_sidebar.scss b/app/application/resources/volt/scss/volt/layout/_sidebar.scss similarity index 100% rename from app/src/resources/volt/scss/volt/layout/_sidebar.scss rename to app/application/resources/volt/scss/volt/layout/_sidebar.scss diff --git a/app/src/resources/volt/scss/volt/layout/_sidenav.scss b/app/application/resources/volt/scss/volt/layout/_sidenav.scss similarity index 100% rename from app/src/resources/volt/scss/volt/layout/_sidenav.scss rename to app/application/resources/volt/scss/volt/layout/_sidenav.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_animations.scss b/app/application/resources/volt/scss/volt/mixins/_animations.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_animations.scss rename to app/application/resources/volt/scss/volt/mixins/_animations.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_background-variant.scss b/app/application/resources/volt/scss/volt/mixins/_background-variant.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_background-variant.scss rename to app/application/resources/volt/scss/volt/mixins/_background-variant.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_icon.scss b/app/application/resources/volt/scss/volt/mixins/_icon.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_icon.scss rename to app/application/resources/volt/scss/volt/mixins/_icon.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_modals.scss b/app/application/resources/volt/scss/volt/mixins/_modals.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_modals.scss rename to app/application/resources/volt/scss/volt/mixins/_modals.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_popover.scss b/app/application/resources/volt/scss/volt/mixins/_popover.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_popover.scss rename to app/application/resources/volt/scss/volt/mixins/_popover.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_transform.scss b/app/application/resources/volt/scss/volt/mixins/_transform.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_transform.scss rename to app/application/resources/volt/scss/volt/mixins/_transform.scss diff --git a/app/src/resources/volt/scss/volt/mixins/_utilities.scss b/app/application/resources/volt/scss/volt/mixins/_utilities.scss similarity index 100% rename from app/src/resources/volt/scss/volt/mixins/_utilities.scss rename to app/application/resources/volt/scss/volt/mixins/_utilities.scss diff --git a/app/src/routes/console.php b/app/application/routes/console.php similarity index 100% rename from app/src/routes/console.php rename to app/application/routes/console.php diff --git a/app/src/routes/web.php b/app/application/routes/web.php similarity index 100% rename from app/src/routes/web.php rename to app/application/routes/web.php diff --git a/app/src/storage/app/.gitignore b/app/application/storage/app/.gitignore similarity index 100% rename from app/src/storage/app/.gitignore rename to app/application/storage/app/.gitignore diff --git a/app/src/storage/app/public/.gitignore b/app/application/storage/app/public/.gitignore similarity index 100% rename from app/src/storage/app/public/.gitignore rename to app/application/storage/app/public/.gitignore diff --git a/app/src/storage/framework/.gitignore b/app/application/storage/framework/.gitignore similarity index 100% rename from app/src/storage/framework/.gitignore rename to app/application/storage/framework/.gitignore diff --git a/app/src/storage/framework/cache/.gitignore b/app/application/storage/framework/cache/.gitignore similarity index 100% rename from app/src/storage/framework/cache/.gitignore rename to app/application/storage/framework/cache/.gitignore diff --git a/app/src/storage/framework/cache/data/.gitignore b/app/application/storage/framework/cache/data/.gitignore similarity index 100% rename from app/src/storage/framework/cache/data/.gitignore rename to app/application/storage/framework/cache/data/.gitignore diff --git a/app/src/storage/framework/sessions/.gitignore b/app/application/storage/framework/sessions/.gitignore similarity index 100% rename from app/src/storage/framework/sessions/.gitignore rename to app/application/storage/framework/sessions/.gitignore diff --git a/app/src/storage/framework/testing/.gitignore b/app/application/storage/framework/testing/.gitignore similarity index 100% rename from app/src/storage/framework/testing/.gitignore rename to app/application/storage/framework/testing/.gitignore diff --git a/app/src/storage/framework/views/.gitignore b/app/application/storage/framework/views/.gitignore similarity index 100% rename from app/src/storage/framework/views/.gitignore rename to app/application/storage/framework/views/.gitignore diff --git a/app/src/storage/logs/.gitignore b/app/application/storage/logs/.gitignore similarity index 100% rename from app/src/storage/logs/.gitignore rename to app/application/storage/logs/.gitignore diff --git a/app/src/tests/Feature/ExampleTest.php b/app/application/tests/Feature/ExampleTest.php similarity index 100% rename from app/src/tests/Feature/ExampleTest.php rename to app/application/tests/Feature/ExampleTest.php diff --git a/app/src/tests/TestCase.php b/app/application/tests/TestCase.php similarity index 100% rename from app/src/tests/TestCase.php rename to app/application/tests/TestCase.php diff --git a/app/src/tests/Unit/ExampleTest.php b/app/application/tests/Unit/ExampleTest.php similarity index 100% rename from app/src/tests/Unit/ExampleTest.php rename to app/application/tests/Unit/ExampleTest.php diff --git a/app/src/vite.config.js b/app/application/vite.config.js similarity index 100% rename from app/src/vite.config.js rename to app/application/vite.config.js diff --git a/app/docker/Dockerfile b/app/docker/Dockerfile index 7afaf50..8bd5856 100644 --- a/app/docker/Dockerfile +++ b/app/docker/Dockerfile @@ -51,7 +51,7 @@ RUN apk --no-cache add pcre2 libbz2 libpng libwebp libjpeg-turbo icu-libs freety FROM BUILD as APP_BUILD_FOR_PRODUCTION WORKDIR /home/app -COPY src /home/app +COPY application /home/app RUN apk --no-cache add git nodejs npm \ && curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \ diff --git a/docker-compose.yml b/docker-compose.yml index 82340f4..6045f4d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: ports: - ${DOCKER_APP_PORT}:9000 volumes: - - ./app/src:/var/www/html + - ./app/application:/var/www/html app-redis: image: redis:3.0-alpine @@ -54,7 +54,7 @@ services: target: ARTISAN user: "${UID}:${GID}" volumes: - - ./app/src:/var/www/html + - ./app/application:/var/www/html composer: build: @@ -63,7 +63,7 @@ services: target: COMPOSER user: "${UID}:${GID}" volumes: - - ./app/src:/var/www/html + - ./app/application:/var/www/html npm: build: @@ -72,4 +72,4 @@ services: target: NPM user: "${UID}:${GID}" volumes: - - ./app/src:/var/www/html + - ./app/application:/var/www/html