All Projects → laravel-frontend-presets → Tailwindcss

laravel-frontend-presets / Tailwindcss

Licence: mit
A Tailwind CSS frontend preset for the Laravel Framework

Projects that are alternatives of or similar to Tailwindcss

Larawind
Larawind - Laravel 8.0+ Jetstream and Tailwind CSS Admin Theme
Stars: ✭ 55 (-94.79%)
Mutual labels:  laravel, tailwindcss, blade
Laravel Blade Javascript
A Blade directive to export variables to JavaScript
Stars: ✭ 485 (-54.07%)
Mutual labels:  laravel, blade
Awesome Tall Stack
A curated list of awesome things related to the TALL stack.
Stars: ✭ 465 (-55.97%)
Mutual labels:  laravel, tailwindcss
Blade
🔪 A standalone version of Laravel's Blade templating engine for use outside of Laravel.
Stars: ✭ 542 (-48.67%)
Mutual labels:  laravel, blade
Comments
Native comments for your Laravel application.
Stars: ✭ 390 (-63.07%)
Mutual labels:  laravel, blade
Freek.dev
The sourcecode of freek.dev
Stars: ✭ 407 (-61.46%)
Mutual labels:  laravel, tailwindcss
Idea Php Laravel Plugin
Laravel Framework Plugin for PhpStorm / IntelliJ IDEA
Stars: ✭ 537 (-49.15%)
Mutual labels:  laravel, blade
Themevel
Theme and asset management for laravel
Stars: ✭ 278 (-73.67%)
Mutual labels:  laravel, blade
Artisan View
👀 Manage your views in Laravel projects through artisan
Stars: ✭ 708 (-32.95%)
Mutual labels:  laravel, blade
Blade Ui Kit
A set of renderless components to utilise in your Laravel Blade views.
Stars: ✭ 763 (-27.75%)
Mutual labels:  laravel, blade
Laravel Notify
Flexible Flash notifications for Laravel
Stars: ✭ 787 (-25.47%)
Mutual labels:  laravel, blade
Coreui Free Laravel Admin Template
CoreUI Free Laravel Bootstrap Admin Template
Stars: ✭ 353 (-66.57%)
Mutual labels:  laravel, blade
Tall Forms
Laravel Livewire (TALL-stack) form generator with realtime validation, file uploads, array fields, blade form input components and more.
Stars: ✭ 321 (-69.6%)
Mutual labels:  laravel, tailwindcss
Statamic
Statamic 3: The New Site/App Package
Stars: ✭ 431 (-59.19%)
Mutual labels:  laravel, tailwindcss
Laravel Form Components
A set of Blade components to rapidly build forms with Tailwind CSS (v1.0 and v2.0) and Bootstrap 4. Supports validation, model binding, default values, translations, Laravel Livewire, includes default vendor styling and fully customizable!
Stars: ✭ 295 (-72.06%)
Mutual labels:  laravel, tailwindcss
Laravel Blade X
Use custom HTML components in your Blade views
Stars: ✭ 538 (-49.05%)
Mutual labels:  laravel, blade
Beautymail
Send beautiful HTML emails with Laravel
Stars: ✭ 923 (-12.59%)
Mutual labels:  laravel, blade
jigsaw-blog-template
Starter template for a blog, using Jigsaw by Tighten
Stars: ✭ 75 (-92.9%)
Mutual labels:  blade, tailwindcss
Formvuelar
Vue form components with server-side validation in mind
Stars: ✭ 263 (-75.09%)
Mutual labels:  laravel, tailwindcss
Awes Io
Awes.io // boilerplate based on Vue, Nuxt, TailwindCSS plus Laravel as a backend. 🤟
Stars: ✭ 599 (-43.28%)
Mutual labels:  laravel, tailwindcss

Laravel 7.0+ Frontend preset for Tailwind CSS

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

Usage

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

a. For Presets without Authentication

  1. Use php artisan ui 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.

b. For Presets with Authentication

  1. Use php artisan ui 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.

Add a new i18n string in the resources/lang/XX/pagination.php file for each language that your app uses:

'previous' => '« Previous',
'next' => 'Next »',
'goto_page' => 'Goto page #:page', // Add this line

This should help with accessibility

<li>
    <a href="URL?page=2" class="..."
       aria-label="Goto page #2"
    >
        2
    </a>
</li>

Pagination

Laravel now supports Tailwind CSS pagination directly. If you would like to use these views in your app, you can refer to docs.

Screenshots

Welcome

Register

Login

Reset Password

Dashboard

Verify

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].