PHPackages                             ivanaquino/laravel-taildashboards - 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. [Admin Panels](/categories/admin)
4. /
5. ivanaquino/laravel-taildashboards

ActiveLibrary[Admin Panels](/categories/admin)

ivanaquino/laravel-taildashboards
=================================

Laravel Taildashboards a seamless integration between Taildashboards and Laravel, allowing developers to easily incorporate beautiful, pre-designed dashboard components into their Laravel applications.This is my package laravel-taildashboards

v0.1.1(2y ago)09[2 PRs](https://github.com/IvanAquino/laravel-taildashboards/pulls)MITBladePHP ^8.1

Since Aug 21Pushed 2y ago1 watchersCompare

[ Source](https://github.com/IvanAquino/laravel-taildashboards)[ Packagist](https://packagist.org/packages/ivanaquino/laravel-taildashboards)[ Docs](https://github.com/ivanaquino/laravel-taildashboards)[ RSS](/packages/ivanaquino-laravel-taildashboards/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (12)Versions (6)Used By (0)

laravel-taildashboards
======================

[](#laravel-taildashboards)

[![Latest Version on Packagist](https://camo.githubusercontent.com/525fbc3528b2da0ba26980744d207af05b3063e2227db3f02fdb81593db29ae5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6976616e617175696e6f2f6c61726176656c2d7461696c64617368626f617264732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ivanaquino/laravel-taildashboards)[![GitHub Tests Action Status](https://camo.githubusercontent.com/377dedac4456ed4b771d88a2dcb5c0700e6ed98c38ef2154fbca1d6c42c81689/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6976616e617175696e6f2f6c61726176656c2d7461696c64617368626f617264732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/ivanaquino/laravel-taildashboards/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/b5b8dc9e0a7ddbd3f6d740fd5b11afd134582176e08af3e1d098576884cbc6b5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6976616e617175696e6f2f6c61726176656c2d7461696c64617368626f617264732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/ivanaquino/laravel-taildashboards/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/eb822c2e1062b7d88c8e833200a55e8da1de3c783a265bc0577fdc407b15ca7c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6976616e617175696e6f2f6c61726176656c2d7461696c64617368626f617264732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ivanaquino/laravel-taildashboards)

This Laravel package provides an effortless way to implement beautiful and responsive dashboard templates from [Taildashboards](https://taildashboards.com). Taildashboards offers a collection of pre-designed templates built with Tailwind CSS, and this package helps you to incorporate them into your Laravel application with ease.This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

 [![](screenshots/tailapp.png?raw=1)](screenshots/tailapp.png?raw=1) [![](screenshots/tailism.png?raw=1)](screenshots/tailism.png?raw=1)

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

[](#installation)

You can install the package via composer:

```
composer require ivanaquino/laravel-taildashboards
```

You need tailwind installation on your laravel, if you're using jetstream or breeze you have it installed but if not you can follow the [official tailwindcss guide](https://tailwindcss.com/docs/guides/laravel)

You will need the npm package **@tailwindcss/typography**, and add the font config to your tailwind.config.js

```
export default {
    theme: {
        extend: {
            fontFamily: {
                sans: ["Figtree", ...defaultTheme.fontFamily.sans],
            },
        },
    },
    plugins: [require("@tailwindcss/typography")],
};
```

If you're having problems with broken styles you can add this line into tailwind.config.js

```
export default {
    content: [
        // ...
        "./vendor/ivanaquino/laravel-taildashboards/resources/views/**/*.blade.php",
        // ...
    ],
};
```

You can publish the config file with:

```
php artisan vendor:publish --tag="taildashboards-config"
```

In this file you'll be able to edit the menu for the dashboard

```
'menu' => [
    [
        'label' => 'Dashboard',
        'route' => 'dashboard',
        'active_route' => 'dashboard',
        'icon' => 'home',
    ],
    [
        'label' => 'View 1',
        'route' => 'view-1',
        'active_route' => 'view-1',
        'icon' => 'circle',
    ],
    [
        'label' => 'View 2',
        'route' => 'view-2',
        'active_route' => 'view-2',
        'icon' => 'home',
    ],
],
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="laravel-taildashboards-views"
```

Usage
-----

[](#usage)

```
# As blade layout
@extends('laravel-taildashboards::layouts.tailapp')

@section('content')
    Lorem ipsum dolor sit amet consectetur adipisicing elit.
@endsection

# Or as a component layout

    Lorem, ipsum dolor sit amet consectetur

```

#### Availables

[](#availables)

```
@extends('laravel-taildashboards::layouts.tailapp')
@extends('laravel-taildashboards::layouts.tailism')

```

Roadmap
=======

[](#roadmap)

- [TailApp](https://taildashboards.com/get/tailapp)
- [TailTube](https://taildashboards.com/get/tailtube)
- [TailFlix](https://taildashboards.com/get/tailflix)
- [TailLism](https://taildashboards.com/get/tailism)
- [TailAdmin](https://taildashboards.com/get/tailadmin)
- [TailSocial](https://taildashboards.com/get/tailsocial)
- Custom components for each dashboard
- Test suit

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Ivan Aquino](https://github.com/IvanAquino)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88.9% 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 ~0 days

Total

2

Last Release

996d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1573ddc6b281047d25b133aa853da5b355b0f385acb88ec767de94f6ba7d46a5?d=identicon)[IvanAquino](/maintainers/IvanAquino)

---

Top Contributors

[![IvanAquino](https://avatars.githubusercontent.com/u/29342852?v=4)](https://github.com/IvanAquino "IvanAquino (16 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

composerdashboarddashboard-templatelaravellaravel-frameworklaravel-packagetailwindtailwindcsslaravelIvanAquinolaravel-taildashboards

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/ivanaquino-laravel-taildashboards/health.svg)

```
[![Health](https://phpackages.com/badges/ivanaquino-laravel-taildashboards/health.svg)](https://phpackages.com/packages/ivanaquino-laravel-taildashboards)
```

###  Alternatives

[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[ralphjsmit/laravel-filament-seo

A package to combine the power of Laravel SEO and Filament Admin.

15398.7k10](/packages/ralphjsmit-laravel-filament-seo)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[geo-sot/filament-env-editor

Access .env file though Filament admin panel

2432.3k1](/packages/geo-sot-filament-env-editor)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

303.2k](/packages/caresome-filament-neobrutalism-theme)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)

PHPackages © 2026

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