├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ ├── Controllers │ │ └── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ └── RegisteredUserController.php │ └── Requests │ │ └── Auth │ │ └── LoginRequest.php ├── Livewire │ ├── Traits │ │ └── Alert.php │ ├── User │ │ └── Profile.php │ └── Users │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── Index.php │ │ └── Update.php ├── Models │ └── User.php ├── Providers │ └── AppServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config └── livewire.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 └── seeders │ └── DatabaseSeeder.php ├── ide.json ├── package.json ├── phpstan.neon ├── phpunit.xml ├── pint.json ├── public ├── .htaccess ├── assets │ └── images │ │ └── tsui.png ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── auth │ ├── login.blade.php │ └── register.blade.php │ ├── dashboard.blade.php │ ├── layouts │ ├── app.blade.php │ └── guest.blade.php │ ├── livewire │ ├── user │ │ └── profile.blade.php │ └── users │ │ ├── create.blade.php │ │ ├── index.blade.php │ │ └── update.blade.php │ └── welcome.blade.php ├── routes ├── auth.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Feature │ └── Livewire │ │ ├── User │ │ └── ProfileTest.php │ │ └── Users │ │ ├── CreateTest.php │ │ ├── DeleteTest.php │ │ ├── IndexTest.php │ │ └── UpdateTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Livewire/Traits/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Livewire/Traits/Alert.php -------------------------------------------------------------------------------- /app/Livewire/User/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Livewire/User/Profile.php -------------------------------------------------------------------------------- /app/Livewire/Users/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Livewire/Users/Create.php -------------------------------------------------------------------------------- /app/Livewire/Users/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Livewire/Users/Delete.php -------------------------------------------------------------------------------- /app/Livewire/Users/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Livewire/Users/Index.php -------------------------------------------------------------------------------- /app/Livewire/Users/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Livewire/Users/Update.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/composer.lock -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/config/livewire.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/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/tallstackui/starter-kit/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/tallstackui/starter-kit/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /ide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/ide.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "psr12" 3 | } 4 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/images/tsui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/public/assets/images/tsui.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/user/profile.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/livewire/user/profile.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/livewire/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/livewire/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/users/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/livewire/users/update.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Feature/Livewire/User/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Feature/Livewire/User/ProfileTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Users/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Feature/Livewire/Users/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Users/DeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Feature/Livewire/Users/DeleteTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Users/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Feature/Livewire/Users/IndexTest.php -------------------------------------------------------------------------------- /tests/Feature/Livewire/Users/UpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Feature/Livewire/Users/UpdateTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tallstackui/starter-kit/HEAD/vite.config.js --------------------------------------------------------------------------------