PHPackages                             takielias/tablar-starter-kit - 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. takielias/tablar-starter-kit

ActiveProject[Framework](/categories/framework)

takielias/tablar-starter-kit
============================

The skeleton application for the Laravel Tablar Starter Kit.

2.1(3mo ago)112321MITBladePHP ^8.2

Since Mar 19Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/takielias/tablar-starter-kit)[ Packagist](https://packagist.org/packages/takielias/tablar-starter-kit)[ RSS](/packages/takielias-tablar-starter-kit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (10)Versions (6)Used By (0)

Laravel Tablar Starter Kit
==========================

[](#laravel-tablar-starter-kit)

[![Latest Version](https://camo.githubusercontent.com/28789fc44c83262c744cf5689e7ec0903e53772c9dc11e599b8a9d00f5741787/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f74616b69656c6961732f7461626c61722d737461727465722d6b69743f636f6c6f723d626c7565266c6162656c3d72656c65617365267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/takielias/tablar-starter-kit)[![Stars](https://camo.githubusercontent.com/ef2bc95eb8d52d48ef805c82623c8c179865b710505ad3d266f36482aeacc20f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f74616b69656c6961732f7461626c61722d737461727465722d6b69743f636f6c6f723d7267622532383036253230313839253230323438253239266c6162656c3d7374617273267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/takielias/tablar-starter-kit)[![Total Downloads](https://camo.githubusercontent.com/e5f69f1e590e4e27e5ab1b69a7385b2e1fecabe5391e3e34a808b1fec864297c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f74616b69656c6961732f7461626c61722d737461727465722d6b69742e7376673f636f6c6f723d7267622532383234392532303131352532303232253239267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/takielias/tablar-starter-kit)[![Forks](https://camo.githubusercontent.com/c9e59afa295ca71055e7f9e2b1e50d3a3388775a439fe9b5e44f6c38f3049429/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f74616b69656c6961732f7461626c61722d737461727465722d6b69743f636f6c6f723d7267622532383133342532303131352532303232253239267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/takielias/tablar-starter-kit)[![Issues](https://camo.githubusercontent.com/43cafa5481352e88c1ca563b81e32c113fc7e887162873726f7f8c1a693e5a5e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f74616b69656c6961732f7461626c61722d737461727465722d6b69743f636f6c6f723d726762253238313334253230323339253230313238253239267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/takielias/tablar-starter-kit)[![Linkedin](https://camo.githubusercontent.com/65e57dee4eb0633fbca0429b13af9bcaa0e812e98f96c849653f970942fc7e9b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2d4c696e6b6564496e2d626c61636b2e7376673f6c6f676f3d6c696e6b6564696e26636f6c6f723d72676261283233352532303638253230353029267374796c653d666f722d7468652d6261646765)](https://linkedin.com/in/takielias)

This guide will walk you through the process of installing Laravel with the Tablar Starter Kit, a modern admin panel template based on [Tabler HTML Template](https://tabler.io/admin-template/preview) .

Prerequisites
-------------

[](#prerequisites)

- PHP 8.3 or higher
- Composer
- Node.js &amp; NPM
- Git

Installation Steps
------------------

[](#installation-steps)

### 1. Install the Laravel Installer (if not already installed)

[](#1-install-the-laravel-installer-if-not-already-installed)

```
composer global require laravel/installer
```

Make sure the Composer bin directory is in your system's PATH.

### 2. Create a New Laravel Project with Tablar Starter Kit

[](#2-create-a-new-laravel-project-with-tablar-starter-kit)

```
laravel new my-project --using=takielias/tablar-starter-kit
```

This command will:

- Create a new Laravel application
- Install the Tablar Starter Kit
- Set up all necessary dependencies

### 3. Navigate to Your Project

[](#3-navigate-to-your-project)

```
cd demo-starter-kit
```

### 4. Configure Your Database

[](#4-configure-your-database)

Edit the `.env` file and update the database connection details:

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password

```

### 5. Start the Development Server

[](#5-start-the-development-server)

```
composer run dev
```

Your application will be available at

Features of Tablar Starter Kit
------------------------------

[](#features-of-tablar-starter-kit)

- Modern admin template based on Tabler
- Responsive design
- Dark mode support
- Ready-to-use dashboard components
- Authentication system pre-configured

Troubleshooting
---------------

[](#troubleshooting)

If you encounter any issues during installation:

1. Make sure your PHP version is compatible (8.3+)
2. Ensure Composer is up to date: `composer self-update`
3. Check Laravel installer version: `laravel --version`

Additional Resources
--------------------

[](#additional-resources)

- [Laravel Tabler](https://tablar.ebuz.xyz/)
- [Tabler HTML UI Kit](https://tabler.io/)

License
-------

[](#license)

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance82

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~109 days

Total

4

Last Release

90d ago

Major Versions

1.1 → 2.02026-02-11

### Community

Maintainers

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

---

Top Contributors

[![takielias](https://avatars.githubusercontent.com/u/38932580?v=4)](https://github.com/takielias "takielias (15 commits)")

---

Tags

laraveltablartablerframeworklaraveltablerTablar

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/takielias-tablar-starter-kit/health.svg)

```
[![Health](https://phpackages.com/badges/takielias-tablar-starter-kit/health.svg)](https://phpackages.com/packages/takielias-tablar-starter-kit)
```

###  Alternatives

[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v3 Starter Kit for Laravel 12, designed to accelerate the development of Filament-powered applications.

401.5k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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