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

ActiveLibrary[Framework](/categories/framework)

minasyans/ttall
===============

TTALL Preset For Laravel 7 and Up.

06PHP

Since Jun 27Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Minasyans/ttall)[ Packagist](https://packagist.org/packages/minasyans/ttall)[ RSS](/packages/minasyans-ttall/feed)WikiDiscussions main Synced 3d ago

READMEChangelogDependenciesVersions (1)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

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity29

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/ecdc8cf478e2993bf46ac77f965077394cf4a6bdc5b21cd3c0ac81b9cb166cf0?d=identicon)[Minasyans](/maintainers/Minasyans)

---

Top Contributors

[![ArtMin96](https://avatars.githubusercontent.com/u/29732308?v=4)](https://github.com/ArtMin96 "ArtMin96 (2 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

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