laravel-frontend-presets / Tall

Licence: mit
A TALL (Tailwind CSS, Alpine.js, Laravel and Livewire) Preset for Laravel

Projects that are alternatives of or similar to Tall

Panel
Pterodactyl is an open-source game server management panel built with PHP 7, React, and Go. Designed with security in mind, Pterodactyl runs all game servers in isolated Docker containers while exposing a beautiful and intuitive UI to end users.
Stars: ✭ 2,988 (+163.72%)
Mutual labels:  laravel, tailwindcss
Freek.dev
The sourcecode of freek.dev
Stars: ✭ 407 (-64.08%)
Mutual labels:  laravel, tailwindcss
Formvuelar
Vue form components with server-side validation in mind
Stars: ✭ 263 (-76.79%)
Mutual labels:  laravel, tailwindcss
Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (+52.69%)
Mutual labels:  laravel, tailwindcss
Tailwindcss
A Tailwind CSS frontend preset for the Laravel Framework
Stars: ✭ 1,056 (-6.8%)
Mutual labels:  laravel, tailwindcss
React Laravel Boilerplate
A Laravel REST API backend with React/Redux, hot module reloading in development and route-level code splitting
Stars: ✭ 146 (-87.11%)
Mutual labels:  laravel, tailwindcss
Tall Forms
Laravel Livewire (TALL-stack) form generator with realtime validation, file uploads, array fields, blade form input components and more.
Stars: ✭ 321 (-71.67%)
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 (-73.96%)
Mutual labels:  laravel, tailwindcss
Awes Io
Awes.io // boilerplate based on Vue, Nuxt, TailwindCSS plus Laravel as a backend. 🤟
Stars: ✭ 599 (-47.13%)
Mutual labels:  laravel, tailwindcss
Awesome Tall Stack
A curated list of awesome things related to the TALL stack.
Stars: ✭ 465 (-58.96%)
Mutual labels:  laravel, tailwindcss
Laranuxt
Laravel and Nuxt.js boilerplate
Stars: ✭ 98 (-91.35%)
Mutual labels:  laravel, tailwindcss
Framework
An eCommerce administration built with Laravel 7 for create and manage online shop with multi-vendor.
Stars: ✭ 56 (-95.06%)
Mutual labels:  laravel, tailwindcss
Pingcrm Svelte
🦊 Ping CRM Svelte - A demo app to illustrate how Inertia.js works with Laravel and Svelte (hosted on a heroku free dyno).
Stars: ✭ 74 (-93.47%)
Mutual labels:  laravel, tailwindcss
Pingcrm React
⚛️ Ping CRM React - A demo app to illustrate how Inertia.js works with Laravel and React (hosted on a heroku free dyno).
Stars: ✭ 158 (-86.05%)
Mutual labels:  laravel, tailwindcss
Keys
🔑 Cryptocurrency private keys
Stars: ✭ 71 (-93.73%)
Mutual labels:  laravel, tailwindcss
Statamic
Statamic 3: The New Site/App Package
Stars: ✭ 431 (-61.96%)
Mutual labels:  laravel, tailwindcss
Larawind
Larawind - Laravel 8.0+ Jetstream and Tailwind CSS Admin Theme
Stars: ✭ 55 (-95.15%)
Mutual labels:  laravel, tailwindcss
Laravel Casts
Form builder for Laravel.
Stars: ✭ 56 (-95.06%)
Mutual labels:  laravel, tailwindcss
Testbench Dusk
[Package] Laravel Dusk Testing Helper for Package Development
Stars: ✭ 61 (-94.62%)
Mutual labels:  laravel
Nova Custom Email Sender
A Laravel Nova tool that sends ad-hoc email messages from the dashboard.
Stars: ✭ 62 (-94.53%)
Mutual labels:  laravel

Laravel TALL Preset

CI Status Total Downloads

A front-end preset for Laravel to scaffold an application using the TALL stack, jumpstarting your application's development.

If you're not familiar with the name, it's an acronym that describes the main technologies involved in the stack:

Login View

Some notable features of this package include:

  • Views extending a default layout
  • Front-end assets like Tailwind CSS and Alpine.js compiled with Laravel Mix
  • Tailwind-powered pagination views
  • The Tailwind UI and Tailwind's Custom Forms extensions available out-of-the-box

Note: If you're looking for an application boilerplate that supports the TALL stack, you should check out Laravel Jetstream. It comes with authentication scaffolding, account management, teams support.

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 (without auth)

Then simply run the following commands:

composer require livewire/livewire laravel-frontend-presets/tall
php artisan ui tall
npm install
npm run dev

Installation (with auth)

If you would like to install the preset and its auth scaffolding in a fresh Laravel application, make sure to use the --auth flag on the ui command:

composer require livewire/livewire laravel-frontend-presets/tall
php artisan ui tall --auth
npm install
npm run dev

Some notable features of the authentication scaffolding include:

  • Powered by Livewire components and single action controllers
  • Bundled with pre-written tests

All routes, components, controllers and tests are published to your application. The idea behind this is that you have full control over every aspect of the scaffolding in your own app, removing the need to dig around in the vendor folder to figure out how things are working.

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.

A note on pagination

If you are using pagination, you set the default pagination views to the ones provided in the boot method of a service provider:

use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    public function boot()
    {
        Paginator::defaultView('pagination::default');

        Paginator::defaultSimpleView('pagination::simple-default');
    }
}

Credits

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].