PHPackages                             tassili/free - 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. tassili/free

ActiveLibrary[Framework](/categories/framework)

tassili/free
============

Laravel Inertia Vue Crud Generator created by Rabah Douassi

v1.0.33(7mo ago)032MITPHPPHP ^8.2

Since Jul 29Pushed 7mo agoCompare

[ Source](https://github.com/yaziddouassi/tassilifree)[ Packagist](https://packagist.org/packages/tassili/free)[ RSS](/packages/tassili-free/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (34)Used By (0)

🧱 TASSILI - Laravel Inertia CRUD Generator
==========================================

[](#-tassili---laravel-inertia-crud-generator)

**TASSILI** is a full-featured CRUD generator package created by Rabah Douassi built with Laravel + Inertia.js + Vue 3. It comes with powerful tools such as Pinia for state management, Quill.js for rich text editing, and Chart.js for data visualization. Here is the web site

---

📋 Requirements
--------------

[](#-requirements)

- PHP `^8.2`
- Node.js and npm
- Laravel `^12` with Breeze (Inertia.js stack)
- Vite properly configured

---

🚀 Installation
--------------

[](#-installation)

### 1. Install Front-End Dependencies

[](#1-install-front-end-dependencies)

```
npm install quill@^2.0.3
npm install vue-chartjs chart.js
npm install pinia
npm install notyf
npm install material-icons
composer require spatie/laravel-route-attributes
```

---

### 2. Configure if you are not using typescript `resources/js/app.js`

[](#2-configure-if-you-are-not-using-typescript-resourcesjsappjs)

```
import '../css/app.css';
import './bootstrap';
import 'material-icons/iconfont/material-icons.css';

import { createInertiaApp } from '@inertiajs/vue3';
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
import { createApp, h } from 'vue';
import { ZiggyVue } from '../../vendor/tightenco/ziggy';
import { createPinia } from 'pinia';

const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
const pinia = createPinia();

createInertiaApp({
  title: (title) => `${title} - ${appName}`,
  resolve: (name) =>
    resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
  setup: ({ el, App, props, plugin }) => {
    return createApp({ render: () => h(App, props) })
      .use(plugin)
      .use(ZiggyVue)
      .use(pinia)
      .mount(el);
  },
  progress: {
    color: '#4B5563'
  }
});
```

---

### 2-b. Configure if you are using typescript `resources/js/app.ts`

[](#2-b-configure-if-you-are-using-typescript-resourcesjsappts)

```
import '../css/app.css';
import './bootstrap';
import 'material-icons/iconfont/material-icons.css';

import { createInertiaApp } from '@inertiajs/vue3';
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
import { createApp,DefineComponent,h } from 'vue';
import { ZiggyVue } from '../../vendor/tightenco/ziggy';
import { createPinia } from 'pinia';

const appName = import.meta.env.VITE_APP_NAME || 'Laravel';
const pinia = createPinia();

createInertiaApp({
  title: (title) => `${title} - ${appName}`,
  resolve: (name) =>
    resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
  setup({ el, App, props, plugin }) {
  createApp({ render: () => h(App, props) })
      .use(plugin)
      .use(ZiggyVue)
      .use(pinia)
      .mount(el);
  },
  progress: {
    color: '#4B5563'
  }
});
```

---

### 3. Storage Configuration (example for `public` disk)

[](#3-storage-configuration-example-for-public-disk)

```
TASSILI_STORAGE_DISK=public
TASSILI_STORAGE_URL=http://127.0.0.1:8000/storage/
```

---

### 4. Install Tassili

[](#4-install-tassili)

```
composer require tassili/free
php artisan migrate
php artisan tassili:install
php artisan vendor:publish --tag=tassili-config
php artisan storage:link
```

---

### 5. Register Tassili Middleware

[](#5-register-tassili-middleware)

In your `bootstrap/app.php`, add:

```
$middleware->alias([
    'tassili.auth' => \App\Http\Middleware\TassiliAuth::class,
]);
```

---

### 6. Update AppServiceProvider

[](#6-update-appserviceprovider)

In your `app/Providers/AppServiceProvider.php`, add:

```
use Illuminate\Support\Facades\Route;
use Spatie\RouteAttributes\RouteRegistrar;
use Spatie\RouteAttributes\RouteFileRegistrar;

 public function boot(): void
    {
        (new RouteRegistrar(Route::getFacadeRoot()))
    ->useRootNamespace('App\\Http\\Controllers')
    ->useBasePath(app_path('Http/Controllers'))
    ->useMiddleware(['web'])
    ->registerDirectory(app_path('Http/Controllers'));

    }
```

---

### 7. Create Admin User

[](#7-create-admin-user)

```
php artisan make:tassili-user
```

Access the admin panel at:

🔗

---

🧩 Features
----------

[](#-features)

- 🎨 Inertia Vue 3 interface
- 🧠 State management with **Pinia**
- 📝 Rich text editing with **Quill.js**
- 📊 Charts with **Chart.js**
- ⚡️ Full **CRUD Generator**
- 🔒 Wizard Form System

---

📘 License
---------

[](#-license)

This project is licensed under a commercial license via [Gumroad](https://yazid4.gumroad.com/l/yyfte).

---

**Crafted with ❤️ by \[LH DIGITAL\]**

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance63

Regular maintenance activity

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity60

Established project with proven stability

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

Total

33

Last Release

223d ago

### Community

Maintainers

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

---

Top Contributors

[![yaziddouassi](https://avatars.githubusercontent.com/u/37118932?v=4)](https://github.com/yaziddouassi "yaziddouassi (54 commits)")

### Embed Badge

![Health badge](/badges/tassili-free/health.svg)

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

###  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)
