├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── screenshots ├── dashboard.png ├── login.png ├── pagination-simple.png ├── pagination.png ├── register.png ├── reset-password-email.png ├── reset-password.png └── verify.png ├── src ├── LaravelPresetServiceProvider.php └── Preset.php └── stubs ├── controllers └── HomeController.stub ├── resources ├── css │ └── app.css └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ └── vendor │ └── pagination │ ├── default.blade.php │ └── simple-default.blade.php ├── tailwind.config.js └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/composer.json -------------------------------------------------------------------------------- /screenshots/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/dashboard.png -------------------------------------------------------------------------------- /screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/login.png -------------------------------------------------------------------------------- /screenshots/pagination-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/pagination-simple.png -------------------------------------------------------------------------------- /screenshots/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/pagination.png -------------------------------------------------------------------------------- /screenshots/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/register.png -------------------------------------------------------------------------------- /screenshots/reset-password-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/reset-password-email.png -------------------------------------------------------------------------------- /screenshots/reset-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/reset-password.png -------------------------------------------------------------------------------- /screenshots/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/screenshots/verify.png -------------------------------------------------------------------------------- /src/LaravelPresetServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/src/LaravelPresetServiceProvider.php -------------------------------------------------------------------------------- /src/Preset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/src/Preset.php -------------------------------------------------------------------------------- /stubs/controllers/HomeController.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/controllers/HomeController.stub -------------------------------------------------------------------------------- /stubs/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/css/app.css -------------------------------------------------------------------------------- /stubs/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/home.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /stubs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/tailwind.config.js -------------------------------------------------------------------------------- /stubs/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailwindcomponents/laravel-preset/HEAD/stubs/webpack.mix.js --------------------------------------------------------------------------------