Laravel frontend preset for Tailwind CSS
382,357
1,143
37
Package Data
Maintainer Username: michaeldyrynda
Package Create Date: 2017-11-01
Package Last Update: 2023-04-16
Home Page: https://laravel-frontend-presets.github.io/tailwindcss/
Language: Blade
License: MIT
Last Refreshed: 2024-05-03 15:05:01
Package Statistics
Total Downloads: 382,357
Monthly Downloads: 1,449
Daily Downloads: 59
Total Stars: 1,143
Total Watchers: 37
Total Forks: 142
Total Open Issues: 3

Laravel 5.7+ Frontend preset for Tailwind CSS

A Laravel front-end scaffolding preset for Tailwind CSS - a Utility-First CSS Framework for Rapid UI Development.

Current version: Tailwind CSS 1.0

Usage

  1. Fresh install Laravel >= 5.7.0 and cd to your app.
  2. Install this preset via composer require laravel-frontend-presets/tailwindcss. Laravel will automatically discover this package. No need to register the service provider.

For Presets without Authentication

  1. Use php artisan preset tailwindcss for the basic Tailwind CSS preset
  2. npm install && npm run dev
  3. php artisan serve (or equivalent) to run server and test preset.

For Presets with Authentication

  1. Use php artisan preset tailwindcss-auth for the basic preset, auth route entry and Tailwind CSS auth views in one go. (NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
  2. npm install && npm run dev
  3. Configure your favorite database (mysql, sqlite etc.)
  4. php artisan migrate to create basic user tables.
  5. php artisan serve (or equivalent) to run server and test preset.

Config

The default tailwind.config.js configuration file included by this package simply uses the config from the Tailwind vendor files. Should you wish to make changes, you should remove the file and run node_modules/.bin/tailwind init, which will generate a fresh configuration file for you, which you are free to change to suit your needs.

Screenshots

Welcome

Register

Login

Reset Password

Dashboard

Verify