├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .nvmrc ├── README.md ├── app ├── Actions │ ├── Admin │ │ ├── Accounts │ │ │ ├── ChangeEmail.php │ │ │ ├── ChangePassword.php │ │ │ ├── CheckEmail.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── ResetPassword.php │ │ │ ├── StatusUpdate.php │ │ │ └── VerifyEmail.php │ │ ├── Cache │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Event.php │ │ │ ├── Optimize.php │ │ │ ├── Route.php │ │ │ └── View.php │ │ ├── Profile │ │ │ ├── Email.php │ │ │ ├── Password.php │ │ │ └── Profile.php │ │ ├── Settings │ │ │ ├── Page │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ └── Update.php │ │ │ ├── Settings.php │ │ │ └── User │ │ │ │ ├── ChangeEmail.php │ │ │ │ ├── CheckEmail.php │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── ResetPassword.php │ │ │ │ ├── StatusUpdate.php │ │ │ │ └── VerifyEmail.php │ │ └── Tools │ │ │ ├── Country │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ └── Update.php │ │ │ └── Language │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ └── Update.php │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── User │ │ └── Profile │ │ ├── Email.php │ │ ├── Password.php │ │ └── Profile.php ├── Enums │ ├── AccountStatus.php │ ├── Status.php │ └── UserType.php ├── Events │ ├── Admin │ │ ├── Accounts │ │ │ ├── ChangeEmail.php │ │ │ ├── ChangePassword.php │ │ │ ├── CheckEmail.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── ResetPassword.php │ │ │ ├── StatusUpdate.php │ │ │ └── VerifyEmail.php │ │ ├── Profile │ │ │ ├── Email.php │ │ │ ├── Password.php │ │ │ └── Profile.php │ │ ├── Settings │ │ │ ├── Page │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ └── Update.php │ │ │ ├── Settings.php │ │ │ └── User │ │ │ │ ├── ChangeEmail.php │ │ │ │ ├── CheckEmail.php │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── ResetPassword.php │ │ │ │ ├── StatusUpdate.php │ │ │ │ └── VerifyEmail.php │ │ └── Tools │ │ │ ├── Cache │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Event.php │ │ │ ├── Optimize.php │ │ │ ├── Route.php │ │ │ └── View.php │ │ │ ├── Country │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ └── Update.php │ │ │ └── Language │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ └── Update.php │ └── User │ │ └── Account │ │ └── Profile │ │ ├── Email.php │ │ ├── Password.php │ │ └── Profile.php ├── Facades │ └── Setting.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── Accounts │ │ │ │ └── AccountsController.php │ │ │ ├── DashboardController.php │ │ │ ├── Profile │ │ │ │ ├── ProfileController.php │ │ │ │ └── TwoFactorAuthenticationController.php │ │ │ ├── Settings │ │ │ │ ├── PagesController.php │ │ │ │ ├── SettingsController.php │ │ │ │ └── UsersController.php │ │ │ └── Tools │ │ │ │ ├── ActivitiesController.php │ │ │ │ ├── AuthLogsController.php │ │ │ │ ├── CacheController.php │ │ │ │ ├── CountryController.php │ │ │ │ └── LanguageController.php │ │ ├── Controller.php │ │ ├── Front │ │ │ └── FrontController.php │ │ └── User │ │ │ ├── Account │ │ │ └── Profile │ │ │ │ ├── ProfileController.php │ │ │ │ └── TwoFactorAuthenticationController.php │ │ │ └── DashboardController.php │ ├── Middleware │ │ ├── PanelAccess.php │ │ ├── SystemSettings.php │ │ └── UserStatusCheck.php │ ├── Requests │ │ ├── Admin │ │ │ ├── Accounts │ │ │ │ ├── AccountCreateRequest.php │ │ │ │ ├── ChangeEmailRequest.php │ │ │ │ ├── ChangePasswordRequest.php │ │ │ │ ├── CheckEmailRequest.php │ │ │ │ ├── ResetPasswordRequest.php │ │ │ │ ├── StatusUpdateRequest.php │ │ │ │ └── VerifyEmailRequest.php │ │ │ ├── Profile │ │ │ │ ├── MailUpdateRequest.php │ │ │ │ ├── PasswordUpdateRequest.php │ │ │ │ └── ProfileUpdateRequest.php │ │ │ ├── Settings │ │ │ │ ├── Page │ │ │ │ │ ├── PageCreateRequest.php │ │ │ │ │ └── PageUpdateRequest.php │ │ │ │ ├── Settings │ │ │ │ │ ├── GeneralSettingsUpdateRequest.php │ │ │ │ │ └── SystemSettingsUpdateRequest.php │ │ │ │ └── Users │ │ │ │ │ ├── ChangeEmailRequest.php │ │ │ │ │ ├── CheckEmailRequest.php │ │ │ │ │ ├── ResetPasswordRequest.php │ │ │ │ │ ├── StatusUpdateRequest.php │ │ │ │ │ ├── UserCreateRequest.php │ │ │ │ │ └── VerifyEmailRequest.php │ │ │ └── Tools │ │ │ │ ├── Country │ │ │ │ ├── CountryCreateRequest.php │ │ │ │ └── CountryUpdateRequest.php │ │ │ │ └── Language │ │ │ │ ├── LanguageCreateRequest.php │ │ │ │ └── LanguageUpdateRequest.php │ │ └── User │ │ │ └── Profile │ │ │ ├── MailUpdateRequest.php │ │ │ ├── PasswordUpdateRequest.php │ │ │ └── ProfileUpdateRequest.php │ └── Responses │ │ └── LoginResponse.php ├── Listeners │ ├── Admin │ │ ├── Account │ │ │ ├── ChangeEmail.php │ │ │ ├── ChangePassword.php │ │ │ ├── CheckEmail.php │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ ├── ResetPassword.php │ │ │ ├── StatusUpdate.php │ │ │ └── VerifyEmail.php │ │ ├── Profile │ │ │ ├── Email.php │ │ │ ├── Password.php │ │ │ └── Profile.php │ │ ├── Settings │ │ │ ├── Page │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ └── Update.php │ │ │ ├── Settings.php │ │ │ └── User │ │ │ │ ├── ChangeEmail.php │ │ │ │ ├── CheckEmail.php │ │ │ │ ├── Create.php │ │ │ │ ├── Delete.php │ │ │ │ ├── ResetPassword.php │ │ │ │ ├── StatusUpdate.php │ │ │ │ └── VerifyEmail.php │ │ └── Tools │ │ │ ├── Cache │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Optimize.php │ │ │ ├── Route.php │ │ │ └── View.php │ │ │ ├── Country │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ └── Update.php │ │ │ ├── Language │ │ │ ├── Create.php │ │ │ ├── Delete.php │ │ │ └── Update.php │ │ │ └── PasswordResetRequest.php │ ├── Auth │ │ ├── AuthAttempting.php │ │ ├── AuthLogin.php │ │ ├── AuthLogout.php │ │ ├── AuthPasswordReset.php │ │ ├── AuthRegistered.php │ │ └── AuthVerified.php │ └── User │ │ └── Profile │ │ ├── Email.php │ │ ├── Password.php │ │ └── Profile.php ├── Mail │ ├── NewAdminEmail.php │ └── NewUserEmail.php ├── Models │ ├── Activity.php │ ├── Authlog.php │ ├── Country.php │ ├── Language.php │ ├── Page.php │ ├── Setting.php │ ├── User.php │ └── UserMeta.php ├── Providers │ ├── AliasServiceProvider.php │ ├── AppServiceProvider.php │ └── FortifyServiceProvider.php ├── Repositories │ ├── AccountRepository.php │ ├── ActivitiesRepository.php │ ├── AuthLogsRepository.php │ ├── BaseRepository.php │ ├── CountryRepository.php │ ├── LanguageRepository.php │ ├── PageRepository.php │ ├── SettingRepository.php │ └── UserRepository.php ├── Scopes │ └── GlobalQuery.php ├── Services │ ├── Admin │ │ ├── Accounts │ │ │ └── AccountService.php │ │ ├── Profile │ │ │ └── ProfileService.php │ │ ├── Settings │ │ │ ├── PageService.php │ │ │ └── UserService.php │ │ └── Tools │ │ │ ├── ActivitiesService.php │ │ │ ├── AuthLogsService.php │ │ │ ├── CountryService.php │ │ │ └── LanguageService.php │ ├── LoggingService.php │ ├── SettingService.php │ └── User │ │ └── Profile │ │ └── ProfileService.php ├── Traits │ ├── AuthUser.php │ ├── HasDefaultPagination.php │ ├── HasGlobalQuery.php │ ├── LogActivity.php │ ├── Owner.php │ └── Sluggable.php └── Utils │ └── Helper.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── fortify.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2024_08_30_202629_add_two_factor_columns_to_users_table.php │ ├── 2024_08_30_221526_add_extra_colums_to_users.php │ ├── 2024_08_31_181726_create_auth_logs_table.php │ ├── 2024_09_02_000259_create_settings_table.php │ ├── 2024_09_03_185853_create_pages_table.php │ ├── 2024_09_06_152425_create_user_metas_table.php │ ├── 2024_09_08_211106_create_activities_table.php │ ├── 2024_10_09_180759_create_languages_table.php │ ├── 2024_10_22_232221_create_countries_table.php │ └── upgrades │ │ ├── 1.x-2.x │ │ ├── 2022_04_22_002342_add_grace_days_column_to_plans_table_table.php │ │ └── 2022_04_22_002342_add_grace_ended_at_column_to_subscriptions_table_table.php │ │ ├── 2.1-2.2 │ │ └── 2022_05_19_0000_add_quota_column_to_features_table.php │ │ ├── 2.4-2.5 │ │ └── 2022_05_19_0000_add_postpaid_column_to_features_table.php │ │ ├── 2.5-2.6 │ │ └── 2022_10_10_0000_make_expired_at_column_nullable_on_tickets_table.php │ │ └── 4.0-4.1 │ │ └── 2023_10_01_0000_make_periodicity_columns_nullable_on_plans_table.php └── seeders │ ├── ContentTablesSeeder.php │ ├── CountriesSeeder.php │ ├── DatabaseSeeder.php │ ├── LanguagesSeeder.php │ └── SettingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ ├── app.css │ ├── front.css │ └── panel.css ├── js │ ├── app.js │ ├── bootstrap.js │ ├── front.js │ └── panel.js ├── sass │ ├── app.scss │ ├── front.scss │ └── panel.scss └── views │ ├── admin │ ├── accounts │ │ ├── authlogs.blade.php │ │ ├── create.blade.php │ │ ├── deleted.blade.php │ │ ├── detail.blade.php │ │ ├── draft.blade.php │ │ ├── inactive.blade.php │ │ ├── include │ │ │ ├── modals.blade.php │ │ │ ├── navigation.blade.php │ │ │ ├── sidebar.blade.php │ │ │ ├── usercard.blade.php │ │ │ └── usermenu.blade.php │ │ ├── index.blade.php │ │ ├── latest.blade.php │ │ ├── passive.blade.php │ │ └── unverified.blade.php │ ├── include │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ ├── index.blade.php │ ├── profile │ │ ├── activitylogs.blade.php │ │ ├── authlogs.blade.php │ │ ├── include │ │ │ └── sidebar.blade.php │ │ ├── index.blade.php │ │ └── twofactor.blade.php │ ├── settings │ │ ├── include │ │ │ └── navigation.blade.php │ │ ├── pages │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── system │ │ │ ├── include │ │ │ │ └── sidebar.blade.php │ │ │ ├── index.blade.php │ │ │ └── system.blade.php │ │ └── users │ │ │ ├── authlogs.blade.php │ │ │ ├── create.blade.php │ │ │ ├── detail.blade.php │ │ │ ├── include │ │ │ ├── modals.blade.php │ │ │ ├── usercard.blade.php │ │ │ └── usermenu.blade.php │ │ │ └── index.blade.php │ └── tools │ │ ├── adminsActivities.blade.php │ │ ├── adminsAuthlogs.blade.php │ │ ├── cache.blade.php │ │ ├── config │ │ ├── countries │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── include │ │ │ └── sidebar.blade.php │ │ └── languages │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ ├── include │ │ ├── modals.blade.php │ │ ├── navigation.blade.php │ │ └── sidebar.blade.php │ │ ├── passwordsActivities.blade.php │ │ ├── usersActivities.blade.php │ │ └── usersAuthlogs.blade.php │ ├── auth │ ├── email-verify.blade.php │ ├── login.blade.php │ ├── password │ │ ├── confirm.blade.php │ │ ├── forgot.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── two-factor-challenge.blade.php │ ├── front │ └── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── auth.blade.php │ ├── front.blade.php │ ├── panel.blade.php │ └── passive.blade.php │ ├── user │ ├── account │ │ ├── include │ │ │ ├── navigation.blade.php │ │ │ └── sidebar.blade.php │ │ └── profile │ │ │ ├── activitylogs.blade.php │ │ │ ├── authlogs.blade.php │ │ │ ├── include │ │ │ └── sidebar.blade.php │ │ │ ├── index.blade.php │ │ │ └── twofactor.blade.php │ ├── include │ │ ├── header.blade.php │ │ └── sidebar.blade.php │ └── index.blade.php │ ├── vendor │ ├── email │ │ ├── newadminagreement.blade.php │ │ ├── newadminemail.blade.php │ │ ├── newuseragreement.blade.php │ │ └── newuseremail.blade.php │ ├── laravel-log-viewer │ │ └── log.blade.php │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── bootstrap-5.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-bootstrap-5.blade.php │ │ ├── simple-default.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── app.php ├── console.php ├── panel.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/ChangeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/ChangeEmail.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/ChangePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/ChangePassword.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/CheckEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/CheckEmail.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/Create.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/Delete.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/ResetPassword.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/StatusUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/StatusUpdate.php -------------------------------------------------------------------------------- /app/Actions/Admin/Accounts/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Accounts/VerifyEmail.php -------------------------------------------------------------------------------- /app/Actions/Admin/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Cache/Cache.php -------------------------------------------------------------------------------- /app/Actions/Admin/Cache/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Cache/Config.php -------------------------------------------------------------------------------- /app/Actions/Admin/Cache/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Cache/Event.php -------------------------------------------------------------------------------- /app/Actions/Admin/Cache/Optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Cache/Optimize.php -------------------------------------------------------------------------------- /app/Actions/Admin/Cache/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Cache/Route.php -------------------------------------------------------------------------------- /app/Actions/Admin/Cache/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Cache/View.php -------------------------------------------------------------------------------- /app/Actions/Admin/Profile/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Profile/Email.php -------------------------------------------------------------------------------- /app/Actions/Admin/Profile/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Profile/Password.php -------------------------------------------------------------------------------- /app/Actions/Admin/Profile/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Profile/Profile.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/Page/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/Page/Create.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/Page/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/Page/Delete.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/Page/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/Page/Update.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/Settings.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/ChangeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/ChangeEmail.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/CheckEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/CheckEmail.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/Create.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/Delete.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/ResetPassword.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/StatusUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/StatusUpdate.php -------------------------------------------------------------------------------- /app/Actions/Admin/Settings/User/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Settings/User/VerifyEmail.php -------------------------------------------------------------------------------- /app/Actions/Admin/Tools/Country/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Tools/Country/Create.php -------------------------------------------------------------------------------- /app/Actions/Admin/Tools/Country/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Tools/Country/Delete.php -------------------------------------------------------------------------------- /app/Actions/Admin/Tools/Country/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Tools/Country/Update.php -------------------------------------------------------------------------------- /app/Actions/Admin/Tools/Language/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Tools/Language/Create.php -------------------------------------------------------------------------------- /app/Actions/Admin/Tools/Language/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Tools/Language/Delete.php -------------------------------------------------------------------------------- /app/Actions/Admin/Tools/Language/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Admin/Tools/Language/Update.php -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/User/Profile/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/User/Profile/Email.php -------------------------------------------------------------------------------- /app/Actions/User/Profile/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/User/Profile/Password.php -------------------------------------------------------------------------------- /app/Actions/User/Profile/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Actions/User/Profile/Profile.php -------------------------------------------------------------------------------- /app/Enums/AccountStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Enums/AccountStatus.php -------------------------------------------------------------------------------- /app/Enums/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Enums/Status.php -------------------------------------------------------------------------------- /app/Enums/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Enums/UserType.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/ChangeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/ChangeEmail.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/ChangePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/ChangePassword.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/CheckEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/CheckEmail.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/Create.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/Delete.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/ResetPassword.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/StatusUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/StatusUpdate.php -------------------------------------------------------------------------------- /app/Events/Admin/Accounts/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Accounts/VerifyEmail.php -------------------------------------------------------------------------------- /app/Events/Admin/Profile/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Profile/Email.php -------------------------------------------------------------------------------- /app/Events/Admin/Profile/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Profile/Password.php -------------------------------------------------------------------------------- /app/Events/Admin/Profile/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Profile/Profile.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/Page/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/Page/Create.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/Page/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/Page/Delete.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/Page/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/Page/Update.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/Settings.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/ChangeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/ChangeEmail.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/CheckEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/CheckEmail.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/Create.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/Delete.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/ResetPassword.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/StatusUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/StatusUpdate.php -------------------------------------------------------------------------------- /app/Events/Admin/Settings/User/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Settings/User/VerifyEmail.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Cache/Cache.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Cache/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Cache/Config.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Cache/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Cache/Event.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Cache/Optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Cache/Optimize.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Cache/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Cache/Route.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Cache/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Cache/View.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Country/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Country/Create.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Country/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Country/Delete.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Country/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Country/Update.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Language/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Language/Create.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Language/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Language/Delete.php -------------------------------------------------------------------------------- /app/Events/Admin/Tools/Language/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/Admin/Tools/Language/Update.php -------------------------------------------------------------------------------- /app/Events/User/Account/Profile/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/User/Account/Profile/Email.php -------------------------------------------------------------------------------- /app/Events/User/Account/Profile/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/User/Account/Profile/Password.php -------------------------------------------------------------------------------- /app/Events/User/Account/Profile/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Events/User/Account/Profile/Profile.php -------------------------------------------------------------------------------- /app/Facades/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Facades/Setting.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Accounts/AccountsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Accounts/AccountsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Profile/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Profile/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Profile/TwoFactorAuthenticationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Profile/TwoFactorAuthenticationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Settings/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Settings/PagesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Settings/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Settings/SettingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Settings/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Settings/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Tools/ActivitiesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Tools/ActivitiesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Tools/AuthLogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Tools/AuthLogsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Tools/CacheController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Tools/CacheController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Tools/CountryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Tools/CountryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/Tools/LanguageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Admin/Tools/LanguageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Front/FrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/Front/FrontController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/Account/Profile/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/User/Account/Profile/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/Account/Profile/TwoFactorAuthenticationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/User/Account/Profile/TwoFactorAuthenticationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Controllers/User/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Middleware/PanelAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Middleware/PanelAccess.php -------------------------------------------------------------------------------- /app/Http/Middleware/SystemSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Middleware/SystemSettings.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserStatusCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Middleware/UserStatusCheck.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/AccountCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/AccountCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/ChangeEmailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/ChangeEmailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/ChangePasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/ChangePasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/CheckEmailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/CheckEmailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/ResetPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/ResetPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/StatusUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/StatusUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Accounts/VerifyEmailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Accounts/VerifyEmailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Profile/MailUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Profile/MailUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Profile/PasswordUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Profile/PasswordUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Profile/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Profile/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Page/PageCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Page/PageCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Page/PageUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Page/PageUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Settings/GeneralSettingsUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Settings/GeneralSettingsUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Settings/SystemSettingsUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Settings/SystemSettingsUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Users/ChangeEmailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Users/ChangeEmailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Users/CheckEmailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Users/CheckEmailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Users/ResetPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Users/ResetPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Users/StatusUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Users/StatusUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Users/UserCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Users/UserCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Settings/Users/VerifyEmailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Settings/Users/VerifyEmailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Tools/Country/CountryCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Tools/Country/CountryCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Tools/Country/CountryUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Tools/Country/CountryUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Tools/Language/LanguageCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Tools/Language/LanguageCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Tools/Language/LanguageUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/Admin/Tools/Language/LanguageUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/User/Profile/MailUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/User/Profile/MailUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/User/Profile/PasswordUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/User/Profile/PasswordUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/User/Profile/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Requests/User/Profile/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Responses/LoginResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Http/Responses/LoginResponse.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/ChangeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/ChangeEmail.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/ChangePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/ChangePassword.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/CheckEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/CheckEmail.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/Create.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/Delete.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/ResetPassword.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/StatusUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/StatusUpdate.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Account/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Account/VerifyEmail.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Profile/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Profile/Email.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Profile/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Profile/Password.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Profile/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Profile/Profile.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/Page/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/Page/Create.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/Page/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/Page/Delete.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/Page/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/Page/Update.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/Settings.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/ChangeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/ChangeEmail.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/CheckEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/CheckEmail.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/Create.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/Delete.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/ResetPassword.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/StatusUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/StatusUpdate.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Settings/User/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Settings/User/VerifyEmail.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Cache/Cache.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Cache/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Cache/Config.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Cache/Optimize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Cache/Optimize.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Cache/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Cache/Route.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Cache/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Cache/View.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Country/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Country/Create.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Country/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Country/Delete.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Country/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Country/Update.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Language/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Language/Create.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Language/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Language/Delete.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/Language/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/Language/Update.php -------------------------------------------------------------------------------- /app/Listeners/Admin/Tools/PasswordResetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Admin/Tools/PasswordResetRequest.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthAttempting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Auth/AuthAttempting.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Auth/AuthLogin.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthLogout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Auth/AuthLogout.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Auth/AuthPasswordReset.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthRegistered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Auth/AuthRegistered.php -------------------------------------------------------------------------------- /app/Listeners/Auth/AuthVerified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/Auth/AuthVerified.php -------------------------------------------------------------------------------- /app/Listeners/User/Profile/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/User/Profile/Email.php -------------------------------------------------------------------------------- /app/Listeners/User/Profile/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/User/Profile/Password.php -------------------------------------------------------------------------------- /app/Listeners/User/Profile/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Listeners/User/Profile/Profile.php -------------------------------------------------------------------------------- /app/Mail/NewAdminEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Mail/NewAdminEmail.php -------------------------------------------------------------------------------- /app/Mail/NewUserEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Mail/NewUserEmail.php -------------------------------------------------------------------------------- /app/Models/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/Activity.php -------------------------------------------------------------------------------- /app/Models/Authlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/Authlog.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/Language.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Models/UserMeta.php -------------------------------------------------------------------------------- /app/Providers/AliasServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Providers/AliasServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/AccountRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/AccountRepository.php -------------------------------------------------------------------------------- /app/Repositories/ActivitiesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/ActivitiesRepository.php -------------------------------------------------------------------------------- /app/Repositories/AuthLogsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/AuthLogsRepository.php -------------------------------------------------------------------------------- /app/Repositories/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/BaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/CountryRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/CountryRepository.php -------------------------------------------------------------------------------- /app/Repositories/LanguageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/LanguageRepository.php -------------------------------------------------------------------------------- /app/Repositories/PageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/PageRepository.php -------------------------------------------------------------------------------- /app/Repositories/SettingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/SettingRepository.php -------------------------------------------------------------------------------- /app/Repositories/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Repositories/UserRepository.php -------------------------------------------------------------------------------- /app/Scopes/GlobalQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Scopes/GlobalQuery.php -------------------------------------------------------------------------------- /app/Services/Admin/Accounts/AccountService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Accounts/AccountService.php -------------------------------------------------------------------------------- /app/Services/Admin/Profile/ProfileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Profile/ProfileService.php -------------------------------------------------------------------------------- /app/Services/Admin/Settings/PageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Settings/PageService.php -------------------------------------------------------------------------------- /app/Services/Admin/Settings/UserService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Settings/UserService.php -------------------------------------------------------------------------------- /app/Services/Admin/Tools/ActivitiesService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Tools/ActivitiesService.php -------------------------------------------------------------------------------- /app/Services/Admin/Tools/AuthLogsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Tools/AuthLogsService.php -------------------------------------------------------------------------------- /app/Services/Admin/Tools/CountryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Tools/CountryService.php -------------------------------------------------------------------------------- /app/Services/Admin/Tools/LanguageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/Admin/Tools/LanguageService.php -------------------------------------------------------------------------------- /app/Services/LoggingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/LoggingService.php -------------------------------------------------------------------------------- /app/Services/SettingService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/SettingService.php -------------------------------------------------------------------------------- /app/Services/User/Profile/ProfileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Services/User/Profile/ProfileService.php -------------------------------------------------------------------------------- /app/Traits/AuthUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Traits/AuthUser.php -------------------------------------------------------------------------------- /app/Traits/HasDefaultPagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Traits/HasDefaultPagination.php -------------------------------------------------------------------------------- /app/Traits/HasGlobalQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Traits/HasGlobalQuery.php -------------------------------------------------------------------------------- /app/Traits/LogActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Traits/LogActivity.php -------------------------------------------------------------------------------- /app/Traits/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Traits/Owner.php -------------------------------------------------------------------------------- /app/Traits/Sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Traits/Sluggable.php -------------------------------------------------------------------------------- /app/Utils/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/app/Utils/Helper.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_30_202629_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_08_30_202629_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_30_221526_add_extra_colums_to_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_08_30_221526_add_extra_colums_to_users.php -------------------------------------------------------------------------------- /database/migrations/2024_08_31_181726_create_auth_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_08_31_181726_create_auth_logs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_02_000259_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_09_02_000259_create_settings_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_03_185853_create_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_09_03_185853_create_pages_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_06_152425_create_user_metas_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_09_06_152425_create_user_metas_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_08_211106_create_activities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_09_08_211106_create_activities_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_09_180759_create_languages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_10_09_180759_create_languages_table.php -------------------------------------------------------------------------------- /database/migrations/2024_10_22_232221_create_countries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/2024_10_22_232221_create_countries_table.php -------------------------------------------------------------------------------- /database/migrations/upgrades/1.x-2.x/2022_04_22_002342_add_grace_days_column_to_plans_table_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/upgrades/1.x-2.x/2022_04_22_002342_add_grace_days_column_to_plans_table_table.php -------------------------------------------------------------------------------- /database/migrations/upgrades/1.x-2.x/2022_04_22_002342_add_grace_ended_at_column_to_subscriptions_table_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/upgrades/1.x-2.x/2022_04_22_002342_add_grace_ended_at_column_to_subscriptions_table_table.php -------------------------------------------------------------------------------- /database/migrations/upgrades/2.1-2.2/2022_05_19_0000_add_quota_column_to_features_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/upgrades/2.1-2.2/2022_05_19_0000_add_quota_column_to_features_table.php -------------------------------------------------------------------------------- /database/migrations/upgrades/2.4-2.5/2022_05_19_0000_add_postpaid_column_to_features_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/upgrades/2.4-2.5/2022_05_19_0000_add_postpaid_column_to_features_table.php -------------------------------------------------------------------------------- /database/migrations/upgrades/2.5-2.6/2022_10_10_0000_make_expired_at_column_nullable_on_tickets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/upgrades/2.5-2.6/2022_10_10_0000_make_expired_at_column_nullable_on_tickets_table.php -------------------------------------------------------------------------------- /database/migrations/upgrades/4.0-4.1/2023_10_01_0000_make_periodicity_columns_nullable_on_plans_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/migrations/upgrades/4.0-4.1/2023_10_01_0000_make_periodicity_columns_nullable_on_plans_table.php -------------------------------------------------------------------------------- /database/seeders/ContentTablesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/seeders/ContentTablesSeeder.php -------------------------------------------------------------------------------- /database/seeders/CountriesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/seeders/CountriesSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/LanguagesSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/seeders/LanguagesSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/database/seeders/SettingsTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/front.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/css/front.css -------------------------------------------------------------------------------- /resources/css/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/css/panel.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/front.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/js/panel.js -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/sass/front.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/sass/front.scss -------------------------------------------------------------------------------- /resources/sass/panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/sass/panel.scss -------------------------------------------------------------------------------- /resources/views/admin/accounts/authlogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/authlogs.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/deleted.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/deleted.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/detail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/detail.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/draft.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/draft.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/inactive.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/inactive.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/include/modals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/include/modals.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/include/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/include/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/include/usercard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/include/usercard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/include/usermenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/include/usermenu.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/latest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/latest.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/passive.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/passive.blade.php -------------------------------------------------------------------------------- /resources/views/admin/accounts/unverified.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/accounts/unverified.blade.php -------------------------------------------------------------------------------- /resources/views/admin/include/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/include/header.blade.php -------------------------------------------------------------------------------- /resources/views/admin/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile/activitylogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/profile/activitylogs.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile/authlogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/profile/authlogs.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/profile/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/profile/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile/twofactor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/profile/twofactor.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/include/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/include/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/pages/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/pages/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/pages/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/pages/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/pages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/pages/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/system/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/system/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/system/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/system/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/system/system.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/system/system.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/authlogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/authlogs.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/detail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/detail.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/include/modals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/include/modals.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/include/usercard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/include/usercard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/include/usermenu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/include/usermenu.blade.php -------------------------------------------------------------------------------- /resources/views/admin/settings/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/settings/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/adminsActivities.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/adminsActivities.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/adminsAuthlogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/adminsAuthlogs.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/cache.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/cache.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/countries/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/countries/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/countries/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/countries/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/countries/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/countries/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/languages/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/languages/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/languages/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/languages/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/config/languages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/config/languages/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/include/modals.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/include/modals.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/include/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/include/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/passwordsActivities.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/passwordsActivities.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/usersActivities.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/usersActivities.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tools/usersAuthlogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/admin/tools/usersAuthlogs.blade.php -------------------------------------------------------------------------------- /resources/views/auth/email-verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/email-verify.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/password/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/password/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/password/forgot.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/password/forgot.blade.php -------------------------------------------------------------------------------- /resources/views/auth/password/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/password/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/front/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/front/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/layouts/auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/front.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/layouts/front.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/layouts/panel.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/passive.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/layouts/passive.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/include/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/include/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/profile/activitylogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/profile/activitylogs.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/profile/authlogs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/profile/authlogs.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/profile/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/profile/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/profile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/profile/index.blade.php -------------------------------------------------------------------------------- /resources/views/user/account/profile/twofactor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/account/profile/twofactor.blade.php -------------------------------------------------------------------------------- /resources/views/user/include/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/include/header.blade.php -------------------------------------------------------------------------------- /resources/views/user/include/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/include/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/email/newadminagreement.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/email/newadminagreement.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/email/newadminemail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/email/newadminemail.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/email/newuseragreement.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/email/newuseragreement.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/email/newuseremail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/email/newuseremail.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/laravel-log-viewer/log.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/laravel-log-viewer/log.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/bootstrap-5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/semantic-ui.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/simple-bootstrap-5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/simple-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/vendor/pagination/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/routes/app.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/routes/panel.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herkobi/panel/HEAD/vite.config.js --------------------------------------------------------------------------------