PHPackages                             pktharindu/ttall - 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. pktharindu/ttall

AbandonedArchivedLibrary[Framework](/categories/framework)

pktharindu/ttall
================

TTALL Preset For Laravel 7 and Up.

v4.0.1(4y ago)541735MITPHPPHP ^7.2.5|^8.0

Since May 19Pushed 4y ago2 watchersCompare

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

READMEChangelog (10)Dependencies (5)Versions (11)Used By (0)

TTALL Preset For Laravel 7 and Up
=================================

[](#ttall-preset-for-laravel-7-and-up)

[![License: MIT](https://camo.githubusercontent.com/f8df3091bbe1149f398a5369b2c39e896766f9f6efba3477c63e9b4aa940ef14/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e)](/LICENSE)[![CI Status](https://github.com/pktharindu/ttall/workflows/tests/badge.svg)](https://github.com/pktharindu/ttall/actions)[![Total Downloads](https://camo.githubusercontent.com/1e259b62bf588e4161c5d5306ee468b266a80617074c52f007939a6a4288663d/68747470733a2f2f706f7365722e707567782e6f72672f706b74686172696e64752f7474616c6c2f642f746f74616c2e737667)](https://packagist.org/packages/pktharindu/ttall)

An opinionated Laravel front-end scaffolding preset for TTALL stack - Tailwindcss | Turbolinks | Alpine.js | Laravel | Livewire 🚀

It comes bundled with some helpful packages and their configurations (optional):

It uses concerns of [laravel/ui](https://github.com/laravel/ui) through Livewire actions. So, security features of laravel/ui (ex: login throttling) are built right in. It also comes bundled with some helpful packages and their configurations (optional):

- Laravel debugbar
- Laravel IDE Helper
- Php CS Fixer
- Larastan
- Eslint (Airbnb rules)
- Prettier
- Composer Git Hooks

[![Screen Record](https://raw.githubusercontent.com/pktharindu/ttall/master/screenshots/screen-record.gif)](https://raw.githubusercontent.com/pktharindu/ttall/master/screenshots/screen-record.gif)

If you like this package, show some love by starring the repo. ⭐❤

Contents
--------

[](#contents)

- [TTALL Preset For Laravel 7 and Up](#ttall-preset-for-laravel-7-and-up)
    - [Contents](#contents)
    - [Installation](#installation)
        - [For Basic Presets (without authentication)](#for-basic-presets-without-authentication)
        - [For Presets with Authentication](#for-presets-with-authentication)
    - [Configuration](#configuration)
    - [Options](#options)
        - [Code Helpers](#code-helpers)
            - [Scripts](#scripts)
    - [Support](#support)
    - [Credits](#credits)
    - [License](#license)

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

[](#installation)

To install this preset on your laravel application, run:

```
composer require pktharindu/ttall --dev
```

### For Basic Presets (without authentication)

[](#for-basic-presets-without-authentication)

To scaffold the basic preset without authentication, run:

```
php artisan ui ttall
```

### For Presets with Authentication

[](#for-presets-with-authentication)

To scaffold the basic preset, auth route entry and auth views in one go, run:

```
php artisan ui ttall --auth
```

Finally run `composer update && npm install && npm run dev` to install the new composer packages and compile your fresh scaffolding.

Configuration
-------------

[](#configuration)

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

```
'previous' => '&laquo; Previous',
'next' => 'Next &raquo;',
'goto_page' => 'Goto page #:page', // Add this line
```

This will help with accessibility.

```

    2

```

Options
-------

[](#options)

As this preset is designed to get you up-and-running quickly, it comes bundled with some extra options that will take you even further. To utilize these options, use the `--option` flag when installing the preset.

Usage Example:

```
php artisan ui ttall --option=code-helpers
```

### Code Helpers

[](#code-helpers)

`code-helpers` option will install and configure the below packages to help you with the development:

- Laravel debugbar
- Laravel IDE Helper
- Php CS Fixer
- Larastan
- Eslint (Airbnb rules)
- Prettier
- Composer Git Hooks

#### Scripts

[](#scripts)

A composer's script is added automatically to tell `Laravel IDE Helper` to rescan your `Facades` files and update git hooks after every `composer update` :

```
"scripts": {
    "post-update-cmd": [
        "Illuminate\\Foundation\\ComposerScripts::postUpdate",
        "@php artisan ide-helper:generate",
        "cghooks update"
    ]
}
```

Also, Git Hooks are added to format your php files automatically before each commit.

```
"extra": {
    "hooks": {
        "pre-commit": [
            "STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM -- '*.php')",
            "php-cs-fixer fix",
            "git add $STAGED_FILES"
        ]
    }
},
```

Scripts are also added to your `package.json` and `composer.json` to run specific actions :

- `composer format` : will use `php-cs-fixer` to format your php files
- `composer test` : will use the `php artisan test` command to run your phpunit tests
- `composer analyse` : will use `larastan` to analyse your code
- `npm run format` : will format your js files on `resources/js` folder
- `npm run lint` : will find issues in your js files based on Airbnb's rules and try to fix them

Support
-------

[](#support)

If you require any support please contact me on [Twitter](https://twitter.com/CallMeTharindu) or open an issue on this repository.

Credits
-------

[](#credits)

- [P. K. Tharindu](https://github.com/pktharindu)
- [All Contributors](../../contributors)

This Package is inspired by [laravel-frontend-presets/tall](https://github.com/laravel-frontend-presets/tall) and [YannickYayo/laravel-preset-ttall](https://github.com/YannickYayo/laravel-preset-ttall). I wanted to have a combination of both. Thanks to all authors of these packages.

License
-------

[](#license)

Licensed under the MIT license, see [LICENSE](/LICENSE) for details.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 87.5% of commits — single point of failure

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 ~70 days

Recently: every ~129 days

Total

10

Last Release

1550d ago

Major Versions

v1.0.4 → v2.0.02020-09-10

v2.0.0 → v3.0.02021-01-01

v3.0.1 → v4.0.02021-10-03

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

v3.0.0PHP ^7.2.5|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/51d2bb584a1f3efc43ac90fb55096e933aae31a63deb72c33f65a5dfd7807cad?d=identicon)[pktharindu](/maintainers/pktharindu)

---

Top Contributors

[![pktharindu](https://avatars.githubusercontent.com/u/23132672?v=4)](https://github.com/pktharindu "pktharindu (21 commits)")[![Thavarshan](https://avatars.githubusercontent.com/u/10804999?v=4)](https://github.com/Thavarshan "Thavarshan (3 commits)")

---

Tags

alpinealpinejshacktoberfestlaravellivewirepresetpresetstailwindtailwindcsstailwinduiturbolinkslaravellivewiretailwindturbolinksalpinetailwindcssalpinejspresettallttall

###  Code Quality

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/pktharindu-ttall/health.svg)

```
[![Health](https://phpackages.com/badges/pktharindu-ttall/health.svg)](https://phpackages.com/packages/pktharindu-ttall)
```

###  Alternatives

[laravel-frontend-presets/tall

TALL preset for Laravel.

2.6k692.9k1](/packages/laravel-frontend-presets-tall)[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)
