├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .idea ├── codeStyles │ └── codeStyleConfig.xml ├── commandlinetools │ ├── Laravel_10_12_20__10_24_PM.xml │ └── schemas │ │ └── frameworkDescriptionVersion1.1.4.xsd ├── modules.xml ├── php.xml ├── phpunit.xml ├── vcs.xml ├── website-manager-jetstream.iml └── workspace.xml ├── .styleci.yml ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── DomainController.php │ │ └── ServerController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── DomainAdd.php │ │ ├── DomainEdit.php │ │ ├── DomainIndex.php │ │ ├── Modal.php │ │ ├── ServerAdd.php │ │ ├── ServerEdit.php │ │ └── ServerIndex.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── DomainMonitor.php │ ├── DomainRecordUpdater.php │ └── TwiloCall.php ├── Mail │ └── Monitor.php ├── Models │ ├── Domain.php │ ├── Event.php │ ├── Server.php │ └── User.php ├── Notifications │ └── SlackMonitor.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── HorizonServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ └── GuestLayout.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── horizon.php ├── jetstream.php ├── logging.php ├── mail.php ├── notify.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2020_10_11_053119_create_events_table.php │ ├── 2020_10_12_142223_create_sessions_table.php │ ├── 2020_10_12_142527_create_domains_table.php │ ├── 2020_10_13_050208_create_servers_table.php │ └── 2020_10_16_080014_create_jobs_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── img │ └── ppm.png ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt ├── vendor │ ├── horizon │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── img │ │ │ ├── favicon.png │ │ │ ├── horizon.svg │ │ │ └── sprite.svg │ │ └── mix-manifest.json │ └── mckenziearts │ │ └── laravel-notify │ │ ├── css │ │ ├── app.css │ │ └── notify.css │ │ ├── images │ │ ├── drake-error.jpg │ │ ├── drake-success.jpg │ │ └── notifications.png │ │ ├── js │ │ ├── app.js │ │ ├── app.js.map │ │ ├── notify.js │ │ └── notify.js.map │ │ └── mix-manifest.json └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── domains │ ├── edit.blade.php │ ├── index.blade.php │ ├── monitor-email.blade.php │ ├── not-found.blade.php │ └── single.blade.php │ ├── layouts │ ├── app.blade.php │ └── guest.blade.php │ ├── livewire │ ├── domain-add.blade.php │ ├── domain-edit.blade.php │ ├── domain-index.blade.php │ ├── modal.blade.php │ ├── server-add.blade.php │ ├── server-edit.blade.php │ └── server-index.blade.php │ ├── navigation-dropdown.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── servers │ ├── edit.blade.php │ └── index.blade.php │ └── vendor │ └── jetstream │ └── components │ ├── action-message.blade.php │ ├── action-section.blade.php │ ├── application-logo.blade.php │ ├── application-mark.blade.php │ ├── authentication-card-logo.blade.php │ ├── authentication-card.blade.php │ ├── button.blade.php │ ├── confirmation-modal.blade.php │ ├── confirms-password.blade.php │ ├── danger-button.blade.php │ ├── dialog-modal.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── form-section.blade.php │ ├── input-error.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── section-border.blade.php │ ├── section-title.blade.php │ ├── switchable-team.blade.php │ ├── validation-errors.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/commandlinetools/Laravel_10_12_20__10_24_PM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/commandlinetools/Laravel_10_12_20__10_24_PM.xml -------------------------------------------------------------------------------- /.idea/commandlinetools/schemas/frameworkDescriptionVersion1.1.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/commandlinetools/schemas/frameworkDescriptionVersion1.1.4.xsd -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/phpunit.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/website-manager-jetstream.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/website-manager-jetstream.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DomainController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Controllers/DomainController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ServerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Controllers/ServerController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/DomainAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/DomainAdd.php -------------------------------------------------------------------------------- /app/Http/Livewire/DomainEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/DomainEdit.php -------------------------------------------------------------------------------- /app/Http/Livewire/DomainIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/DomainIndex.php -------------------------------------------------------------------------------- /app/Http/Livewire/Modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/Modal.php -------------------------------------------------------------------------------- /app/Http/Livewire/ServerAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/ServerAdd.php -------------------------------------------------------------------------------- /app/Http/Livewire/ServerEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/ServerEdit.php -------------------------------------------------------------------------------- /app/Http/Livewire/ServerIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Livewire/ServerIndex.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Jobs/DomainMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Jobs/DomainMonitor.php -------------------------------------------------------------------------------- /app/Jobs/DomainRecordUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Jobs/DomainRecordUpdater.php -------------------------------------------------------------------------------- /app/Jobs/TwiloCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Jobs/TwiloCall.php -------------------------------------------------------------------------------- /app/Mail/Monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Mail/Monitor.php -------------------------------------------------------------------------------- /app/Models/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Models/Domain.php -------------------------------------------------------------------------------- /app/Models/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Models/Event.php -------------------------------------------------------------------------------- /app/Models/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Models/Server.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/SlackMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Notifications/SlackMonitor.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/app/helpers.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/horizon.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/notify.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_11_053119_create_events_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2020_10_11_053119_create_events_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_12_142223_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2020_10_12_142223_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_12_142527_create_domains_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2020_10_12_142527_create_domains_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_13_050208_create_servers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2020_10_13_050208_create_servers_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_16_080014_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/migrations/2020_10_16_080014_create_jobs_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/ppm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/img/ppm.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/horizon/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/app-dark.css -------------------------------------------------------------------------------- /public/vendor/horizon/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/app.css -------------------------------------------------------------------------------- /public/vendor/horizon/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/app.js -------------------------------------------------------------------------------- /public/vendor/horizon/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/img/favicon.png -------------------------------------------------------------------------------- /public/vendor/horizon/img/horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/img/horizon.svg -------------------------------------------------------------------------------- /public/vendor/horizon/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/img/sprite.svg -------------------------------------------------------------------------------- /public/vendor/horizon/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/horizon/mix-manifest.json -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/css/app.css -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/css/notify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/css/notify.css -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/images/drake-error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/images/drake-error.jpg -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/images/drake-success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/images/drake-success.jpg -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/images/notifications.png -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/js/app.js -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/js/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/js/app.js.map -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/js/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/js/notify.js -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/js/notify.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/js/notify.js.map -------------------------------------------------------------------------------- /public/vendor/mckenziearts/laravel-notify/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/vendor/mckenziearts/laravel-notify/mix-manifest.json -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/domains/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/domains/edit.blade.php -------------------------------------------------------------------------------- /resources/views/domains/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/domains/index.blade.php -------------------------------------------------------------------------------- /resources/views/domains/monitor-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/domains/monitor-email.blade.php -------------------------------------------------------------------------------- /resources/views/domains/not-found.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/domains/not-found.blade.php -------------------------------------------------------------------------------- /resources/views/domains/single.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/domains/single.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/domain-add.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/domain-add.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/domain-edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/domain-edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/domain-index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/domain-index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/modal.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server-add.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/server-add.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server-edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/server-edit.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server-index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/livewire/server-index.blade.php -------------------------------------------------------------------------------- /resources/views/navigation-dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/navigation-dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/servers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/servers/edit.blade.php -------------------------------------------------------------------------------- /resources/views/servers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/servers/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/action-section.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-logo.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-mark.blade.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/authentication-card.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/confirms-password.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/form-section.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/section-border.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/section-title.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/switchable-team.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/resources/views/vendor/jetstream/components/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raselupm/website-manager/HEAD/webpack.mix.js --------------------------------------------------------------------------------