PHPackages                             laravel-frontend-presets/tall - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. laravel-frontend-presets/tall

ActiveLibrary[Framework](/categories/framework)

laravel-frontend-presets/tall
=============================

TALL preset for Laravel.

v9.1.0(1y ago)2.6k692.9k↓29.9%209[5 issues](https://github.com/laravel-frontend-presets/tall/issues)[1 PRs](https://github.com/laravel-frontend-presets/tall/pulls)1MITBladePHP ^8.2CI passing

Since May 4Pushed 3mo ago57 watchersCompare

[ Source](https://github.com/laravel-frontend-presets/tall)[ Packagist](https://packagist.org/packages/laravel-frontend-presets/tall)[ RSS](/packages/laravel-frontend-presets-tall/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (3)Versions (40)Used By (1)

Laravel TALL Preset
===================

[](#laravel-tall-preset)

[![CI Status](https://github.com/laravel-frontend-presets/tall/actions/workflows/tests.yml/badge.svg)](https://github.com/laravel-frontend-presets/tall/actions)[![Total Downloads](https://camo.githubusercontent.com/1be4ef7e82043bffbdc674e13c686040e58e8f48c3220ffb0395500ad9a6a116/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176656c2d66726f6e74656e642d707265736574732f74616c6c2f642f746f74616c2e737667)](https://packagist.org/packages/laravel-frontend-presets/tall)

A front-end preset for Laravel to scaffold an application using the [TALL stack](https://tallstack.dev), 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:

- [Tailwind CSS](https://tailwindcss.com)
- [Alpine.js](https://alpinejs.dev/)
- [Laravel](https://laravel.com)
- [Livewire](https://livewire.laravel.com)

[![Login View](./screenshot.png)](./screenshot.png)

Some notable features of this package include:

- Views extending a default layout
- Front-end assets like Tailwind CSS and Alpine.js compiled with Vite 3
- Tailwind-powered pagination views
- The [Tailwind UI](https://tailwindui.com) and Tailwind's [Custom Forms](https://github.com/tailwindcss/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](https://github.com/laravel/jetstream). It comes with authentication scaffolding, account management, teams support.

Installation
------------

[](#installation)

This preset is intended to be installed into a fresh Laravel application. Follow [Laravel's installation instructions](https://laravel.com/docs/installation) to ensure you have a working environment before continuing.

### Installation (without auth)

[](#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)

[](#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
-----------

[](#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](https://tailwindcss.com/docs/controlling-file-size/).

Removing the package
--------------------

[](#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

[](#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
-------

[](#credits)

- [Dan Harrin](https://github.com/DanHarrin)
- [Liam Hammett](https://github.com/imliam)
- [Ryan Chandler](https://github.com/ryangjchandler)
- [Tailwind UI](https://tailwindui.com) for the default authentication and pagination views
- [All Contributors](../../contributors)

###  Health Score

65

—

FairBetter than 99% of packages

Maintenance64

Regular maintenance activity

Popularity66

Solid adoption and visibility

Community37

Small or concentrated contributor base

Maturity80

Battle-tested with a long release history

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~49 days

Recently: every ~121 days

Total

37

Last Release

435d ago

Major Versions

v4.2.0 → v5.0.02022-07-26

v5.0.3 → v6.0.02023-02-23

v6.2.0 → v7.0.02023-10-23

v7.0.2 → v8.0.02024-03-28

v8.0.0 → v9.0.02025-02-25

PHP version history (5 changes)v1.0.0PHP ^7.2.5

v2.2.0PHP ^7.2.5|^8.0

v4.1.0PHP ^8.0

v6.0.0PHP ^8.1

v8.0.0PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23558090?v=4)[Miguel Piedrafita](/maintainers/m1guelpf)[@m1guelpf](https://github.com/m1guelpf)

---

Top Contributors

[![danharrin](https://avatars.githubusercontent.com/u/41773797?v=4)](https://github.com/danharrin "danharrin (92 commits)")[![imliam](https://avatars.githubusercontent.com/u/4326337?v=4)](https://github.com/imliam "imliam (28 commits)")[![bhargavraviya](https://avatars.githubusercontent.com/u/46953122?v=4)](https://github.com/bhargavraviya "bhargavraviya (12 commits)")[![ryangjchandler](https://avatars.githubusercontent.com/u/41837763?v=4)](https://github.com/ryangjchandler "ryangjchandler (9 commits)")[![marufmax](https://avatars.githubusercontent.com/u/7222229?v=4)](https://github.com/marufmax "marufmax (7 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (6 commits)")[![mikebronner](https://avatars.githubusercontent.com/u/1791050?v=4)](https://github.com/mikebronner "mikebronner (6 commits)")[![marcorieser](https://avatars.githubusercontent.com/u/2395800?v=4)](https://github.com/marcorieser "marcorieser (5 commits)")[![tnylea](https://avatars.githubusercontent.com/u/601261?v=4)](https://github.com/tnylea "tnylea (4 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (4 commits)")[![omimouni](https://avatars.githubusercontent.com/u/19931927?v=4)](https://github.com/omimouni "omimouni (4 commits)")[![andcl](https://avatars.githubusercontent.com/u/8470427?v=4)](https://github.com/andcl "andcl (4 commits)")[![pktharindu](https://avatars.githubusercontent.com/u/23132672?v=4)](https://github.com/pktharindu "pktharindu (3 commits)")[![owenvoke](https://avatars.githubusercontent.com/u/1899334?v=4)](https://github.com/owenvoke "owenvoke (3 commits)")[![kevin-govassist](https://avatars.githubusercontent.com/u/151245212?v=4)](https://github.com/kevin-govassist "kevin-govassist (2 commits)")[![brandon-9](https://avatars.githubusercontent.com/u/5572470?v=4)](https://github.com/brandon-9 "brandon-9 (2 commits)")[![lucaros97](https://avatars.githubusercontent.com/u/8333004?v=4)](https://github.com/lucaros97 "lucaros97 (2 commits)")[![mikemand](https://avatars.githubusercontent.com/u/745184?v=4)](https://github.com/mikemand "mikemand (2 commits)")[![xewl](https://avatars.githubusercontent.com/u/245041?v=4)](https://github.com/xewl "xewl (1 commits)")[![Blinks44](https://avatars.githubusercontent.com/u/8570193?v=4)](https://github.com/Blinks44 "Blinks44 (1 commits)")

---

Tags

alpinejslaravellaravel-frontend-presetslivewiretailwindcsslaravellivewiretailwindalpinetailwindcssalpinejspresettailwinduitall

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/laravel-frontend-presets-tall/health.svg)

```
[![Health](https://phpackages.com/badges/laravel-frontend-presets-tall/health.svg)](https://phpackages.com/packages/laravel-frontend-presets-tall)
```

###  Alternatives

[robsontenorio/mary

Gorgeous UI components for Livewire powered by daisyUI and Tailwind

1.5k454.7k15](/packages/robsontenorio-mary)[camya/filament-title-with-slug

TitleWithSlugInput - Easy Permalink Slugs for the FilamentPHP Form Builder (PHP / Laravel / Livewire)

13444.5k](/packages/camya-filament-title-with-slug)[developermithu/tallcraftui

TallCraftUI is a Laravel blade UI components library built on TALL stack

1672.4k](/packages/developermithu-tallcraftui)[blendbyte/filament-title-with-slug

TitleWithSlugInput - Easy Permalink Slugs for the FilamentPHP Form Builder (PHP / Laravel / Livewire)

1322.4k3](/packages/blendbyte-filament-title-with-slug)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
