├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .env.example ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Facades │ └── Toast.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ └── Controller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ └── Auth │ │ └── LoginRequest.php ├── Models │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── ToastServiceProvider.php └── Services │ └── ToastService.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── inertia.php ├── logging.php ├── mail.php ├── queue.php ├── ray.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2019_12_14_000001_create_personal_access_tokens_table.php └── seeders │ └── DatabaseSeeder.php ├── docker-compose.yml ├── docker └── 8.1 │ ├── Dockerfile │ ├── php.ini │ ├── start-container │ └── supervisord.conf ├── jsconfig.json ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── frontend │ ├── Components │ │ ├── AccountMenu.vue │ │ ├── Alert.vue │ │ ├── ApplicationLogo.vue │ │ ├── Auth │ │ │ └── Logo.vue │ │ ├── DialogLink.vue │ │ ├── Modal.vue │ │ ├── NavDrawer.vue │ │ ├── NavLink.vue │ │ ├── NavLinkBookmarker.vue │ │ ├── NavList.vue │ │ ├── SlideOver.vue │ │ └── Toasts.vue │ ├── Layouts │ │ ├── AppShell.vue │ │ ├── Authenticated.vue │ │ └── Guest.vue │ ├── Pages │ │ ├── Account.vue │ │ ├── Auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ └── VerifyEmail.vue │ │ ├── Dashboard.vue │ │ ├── Welcome.vue │ │ ├── WelcomeModal.vue │ │ └── WelcomeSlideOver.vue │ ├── Transitions │ │ ├── FadeTransition.vue │ │ └── ScaleYTransition.vue │ ├── app.js │ ├── assets │ │ ├── quasar.variables.scss │ │ └── tailwind.css │ └── store │ │ └── app-shell.js └── views │ └── app.blade.php ├── routes ├── api.php ├── auth.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 │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ └── RegistrationTest.php │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.mjs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Facades/Toast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Facades/Toast.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ToastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Providers/ToastServiceProvider.php -------------------------------------------------------------------------------- /app/Services/ToastService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/app/Services/ToastService.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/inertia.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/ray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/ray.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/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/prontostack/pronto-fuel/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/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/prontostack/pronto-fuel/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/docker/8.1/Dockerfile -------------------------------------------------------------------------------- /docker/8.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/docker/8.1/php.ini -------------------------------------------------------------------------------- /docker/8.1/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/docker/8.1/start-container -------------------------------------------------------------------------------- /docker/8.1/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/docker/8.1/supervisord.conf -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/frontend/Components/AccountMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/AccountMenu.vue -------------------------------------------------------------------------------- /resources/frontend/Components/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/Alert.vue -------------------------------------------------------------------------------- /resources/frontend/Components/ApplicationLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/ApplicationLogo.vue -------------------------------------------------------------------------------- /resources/frontend/Components/Auth/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/Auth/Logo.vue -------------------------------------------------------------------------------- /resources/frontend/Components/DialogLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/DialogLink.vue -------------------------------------------------------------------------------- /resources/frontend/Components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/Modal.vue -------------------------------------------------------------------------------- /resources/frontend/Components/NavDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/NavDrawer.vue -------------------------------------------------------------------------------- /resources/frontend/Components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/NavLink.vue -------------------------------------------------------------------------------- /resources/frontend/Components/NavLinkBookmarker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/NavLinkBookmarker.vue -------------------------------------------------------------------------------- /resources/frontend/Components/NavList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/NavList.vue -------------------------------------------------------------------------------- /resources/frontend/Components/SlideOver.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/SlideOver.vue -------------------------------------------------------------------------------- /resources/frontend/Components/Toasts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Components/Toasts.vue -------------------------------------------------------------------------------- /resources/frontend/Layouts/AppShell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Layouts/AppShell.vue -------------------------------------------------------------------------------- /resources/frontend/Layouts/Authenticated.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Layouts/Authenticated.vue -------------------------------------------------------------------------------- /resources/frontend/Layouts/Guest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Layouts/Guest.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Account.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Auth/Login.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Auth/Register.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Auth/VerifyEmail.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/Welcome.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/WelcomeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/WelcomeModal.vue -------------------------------------------------------------------------------- /resources/frontend/Pages/WelcomeSlideOver.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Pages/WelcomeSlideOver.vue -------------------------------------------------------------------------------- /resources/frontend/Transitions/FadeTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Transitions/FadeTransition.vue -------------------------------------------------------------------------------- /resources/frontend/Transitions/ScaleYTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/Transitions/ScaleYTransition.vue -------------------------------------------------------------------------------- /resources/frontend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/app.js -------------------------------------------------------------------------------- /resources/frontend/assets/quasar.variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/assets/quasar.variables.scss -------------------------------------------------------------------------------- /resources/frontend/assets/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/assets/tailwind.css -------------------------------------------------------------------------------- /resources/frontend/store/app-shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/frontend/store/app-shell.js -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/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/prontostack/pronto-fuel/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/prontostack/pronto-fuel/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontostack/pronto-fuel/HEAD/vite.config.mjs --------------------------------------------------------------------------------