├── .editorconfig ├── .env.example ├── .envTest ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── EmailVerificationController.php │ │ │ ├── LogoutController.php │ │ │ └── VerifyEmailController.php │ │ └── Controller.php │ └── Middleware │ │ └── RedirectToDashboard.php ├── Livewire │ ├── Actions │ │ └── Logout.php │ └── Forms │ │ └── LoginForm.php ├── Models │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── FolioServiceProvider.php │ └── VoltServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── devdojo │ └── auth │ │ ├── appearance.php │ │ ├── descriptions.php │ │ ├── language.php │ │ ├── providers.php │ │ └── settings.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2024_04_24_000001_add_user_social_provider_table.php │ ├── 2024_04_24_000002_update_passwords_field_to_be_nullable.php │ └── 2024_05_07_000003_add_two_factor_auth_columns.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── postcss.config.cjs ├── postcss.config.js ├── public ├── .htaccess ├── assets │ └── audio │ │ ├── dark.mp3 │ │ └── light.mp3 ├── auth │ ├── app.css │ ├── build │ │ ├── assets │ │ │ ├── scripts.js │ │ │ └── styles.css │ │ └── manifest.json │ └── img │ │ ├── favicon-dark.png │ │ ├── favicon.ico │ │ └── favicon.png ├── favicon.ico ├── genesis │ └── power-ups.json ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── components │ ├── action-message.blade.php │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── danger-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ ├── main.blade.php │ │ └── marketing.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── primary-button.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── text-input.blade.php │ └── ui │ │ ├── app │ │ └── header.blade.php │ │ ├── badge.blade.php │ │ ├── button.blade.php │ │ ├── checkbox.blade.php │ │ ├── input.blade.php │ │ ├── light-dark-switch.blade.php │ │ ├── link.blade.php │ │ ├── logo.blade.php │ │ ├── marketing │ │ ├── breadcrumbs.blade.php │ │ ├── header.blade.php │ │ └── page-header.blade.php │ │ ├── modal.blade.php │ │ ├── nav-link.blade.php │ │ ├── placeholder.blade.php │ │ ├── select.blade.php │ │ ├── slide-over.blade.php │ │ └── text-link.blade.php │ ├── dashboard.blade.php │ ├── layouts │ ├── app.blade.php │ └── guest.blade.php │ ├── livewire │ ├── .gitkeep │ ├── layout │ │ └── navigation.blade.php │ ├── pages │ │ └── auth │ │ │ ├── confirm-password.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ ├── register.blade.php │ │ │ ├── reset-password.blade.php │ │ │ └── verify-email.blade.php │ ├── profile │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── toast.blade.php │ └── welcome │ │ └── navigation.blade.php │ ├── pages │ ├── auth │ │ ├── login.blade.php │ │ ├── password │ │ │ ├── [token].blade.php │ │ │ ├── confirm.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ └── verify.blade.php │ ├── dashboard │ │ └── index.blade.php │ ├── genesis │ │ ├── about.blade.php │ │ └── power-ups.blade.php │ ├── index.blade.php │ ├── learn │ │ └── index.blade.php │ └── profile │ │ └── edit.blade.php │ ├── profile.blade.php │ ├── vendor │ └── mail │ │ └── html │ │ └── header.blade.php │ └── welcome.blade.php ├── routes ├── auth.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── LoginTest.php │ │ ├── LogoutTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ ├── Passwords │ │ │ ├── ConfirmTest.php │ │ │ ├── EmailTest.php │ │ │ └── [Token]Test.php │ │ ├── RegisterTest.php │ │ ├── RegistrationTest.php │ │ └── VerifyTest.php │ ├── ExampleTest.php │ ├── HomeTest.php │ └── ProfileTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/.env.example -------------------------------------------------------------------------------- /.envTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/.envTest -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/README.md -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Http/Controllers/Auth/EmailVerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LogoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Http/Controllers/Auth/LogoutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectToDashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Http/Middleware/RedirectToDashboard.php -------------------------------------------------------------------------------- /app/Livewire/Actions/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Livewire/Actions/Logout.php -------------------------------------------------------------------------------- /app/Livewire/Forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Livewire/Forms/LoginForm.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FolioServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Providers/FolioServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/VoltServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/Providers/VoltServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/database.php -------------------------------------------------------------------------------- /config/devdojo/auth/appearance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/devdojo/auth/appearance.php -------------------------------------------------------------------------------- /config/devdojo/auth/descriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/devdojo/auth/descriptions.php -------------------------------------------------------------------------------- /config/devdojo/auth/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/devdojo/auth/language.php -------------------------------------------------------------------------------- /config/devdojo/auth/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/devdojo/auth/providers.php -------------------------------------------------------------------------------- /config/devdojo/auth/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/devdojo/auth/settings.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_24_000001_add_user_social_provider_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/migrations/2024_04_24_000001_add_user_social_provider_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_24_000002_update_passwords_field_to_be_nullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/migrations/2024_04_24_000002_update_passwords_field_to_be_nullable.php -------------------------------------------------------------------------------- /database/migrations/2024_05_07_000003_add_two_factor_auth_columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/migrations/2024_05_07_000003_add_two_factor_auth_columns.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/audio/dark.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/assets/audio/dark.mp3 -------------------------------------------------------------------------------- /public/assets/audio/light.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/assets/audio/light.mp3 -------------------------------------------------------------------------------- /public/auth/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/auth/app.css -------------------------------------------------------------------------------- /public/auth/build/assets/scripts.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/auth/build/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/auth/build/assets/styles.css -------------------------------------------------------------------------------- /public/auth/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/auth/build/manifest.json -------------------------------------------------------------------------------- /public/auth/img/favicon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/auth/img/favicon-dark.png -------------------------------------------------------------------------------- /public/auth/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/auth/img/favicon.ico -------------------------------------------------------------------------------- /public/auth/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/auth/img/favicon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/genesis/power-ups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/genesis/power-ups.json -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/input-label.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/layouts/main.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/marketing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/layouts/marketing.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/primary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/primary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/app/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/app/header.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/badge.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/light-dark-switch.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/light-dark-switch.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/link.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/marketing/breadcrumbs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/marketing/breadcrumbs.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/marketing/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/marketing/header.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/marketing/page-header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/marketing/page-header.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/placeholder.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/placeholder.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/select.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/slide-over.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/slide-over.blade.php -------------------------------------------------------------------------------- /resources/views/components/ui/text-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/components/ui/text-link.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/livewire/layout/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/layout/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/pages/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/pages/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/pages/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/pages/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/pages/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/pages/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/toast.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/toast.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/welcome/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/livewire/welcome/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/password/[token].blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/auth/password/[token].blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/password/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/auth/password/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/password/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/auth/password/reset.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/pages/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/pages/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/genesis/about.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/genesis/about.blade.php -------------------------------------------------------------------------------- /resources/views/pages/genesis/power-ups.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/genesis/power-ups.blade.php -------------------------------------------------------------------------------- /resources/views/pages/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/learn/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/learn/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/pages/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/profile.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/routes/web.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/elrincondeisma/template-laravel-2024/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/elrincondeisma/template-laravel-2024/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/LoginTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/LogoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/LogoutTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/Passwords/ConfirmTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/Passwords/ConfirmTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/Passwords/EmailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/Passwords/EmailTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/Passwords/[Token]Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/Passwords/[Token]Test.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegisterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/RegisterTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/VerifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/Auth/VerifyTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/HomeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/HomeTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elrincondeisma/template-laravel-2024/HEAD/vite.config.js --------------------------------------------------------------------------------