variable.club / tall
TALL preset for Laravel, forked from https://github.com/laravel-frontend-presets/tall.
Requires
- php: ^8.1
- illuminate/support: ^10.0
- laravel/ui: ^4.2
Requires (Dev)
- phpunit/phpunit: ^9.5.10
This package is auto-updated.
Last update: 2024-12-21 13:00:55 UTC
README
TALL preset for Laravel, forked from https://github.com/laravel-frontend-presets/tall.
Installation
This preset is intended to be installed into a fresh Laravel application. Follow Laravel's installation instructions to ensure you have a working environment before continuing.
Installation (default)
Then simply run the following commands:
composer require variable.club/tall
php artisan ui tall
npm install
npm run dev
Installation (with blast)
If you would like to install the preset and its auth scaffolding in a fresh Laravel application, make sure to use the --blast
flag on the ui
command:
composer require area17/blast variable.club/tall
php artisan ui tall --option=blast
npm install
npm run dev
To run Blast, use this command:
php artisan blast:launch
Then, navigate to http://localhost:6006
.
CSS purging
Tailwind uses PurgeCSS to remove any unused classes from your production CSS builds. You can modify or remove this behaviour in the purge
section of your tailwind.config.js
file. For more information, please see the Tailwind documentation.
Removing the package
If you don't want to keep this package installed once you've installed the preset, you can safely remove it. Unlike the default Laravel presets, this one publishes all the auth logic to your project's /app
directory, so it's fully redundant.
Credits
Original authors
- Dan Harrin
- Liam Hammett
- Ryan Chandler
- Tailwind UI for the default authentication and pagination views
- All Contributors