PHPackages                             hoggarcrud/hoggar - 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. hoggarcrud/hoggar

ActiveLibrary[Framework](/categories/framework)

hoggarcrud/hoggar
=================

laravel inertia vue crud generator

v1.0.12(1y ago)018MITPHPPHP ^8.2

Since Jun 4Pushed 1y agoCompare

[ Source](https://github.com/yaziddouassi/HoggarCrudFinal)[ Packagist](https://packagist.org/packages/hoggarcrud/hoggar)[ RSS](/packages/hoggarcrud-hoggar/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (14)Used By (0)

🧱 Hoggar - Laravel Inertia CRUD Generator
=========================================

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

**Hoggar** is a full-featured CRUD generator package 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
```

---

### 2. Configure `resources/js/app.js`

[](#2-configure-resourcesjsappjs)

```
import '../css/app.css';
import './bootstrap';

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',
  },
});
```

---

### 3. Update Blade Template

[](#3-update-blade-template)

Update your `resources/views/app.blade.php`:

```

  {{ config('app.name', 'Laravel') }}

  @routes
  @vite(['resources/js/app.js', "resources/js/Pages/{$page['component']}.vue"])
  @inertiaHead

  @inertia

```

---

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

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

```
HOGGAR_STORAGE_DISK=public
HOGGAR_STORAGE_URL=http://127.0.0.1:8000/storage/
```

---

### 5. Install Hoggar

[](#5-install-hoggar)

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

---

### 6. Create Admin User

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

```
php artisan make:hoggar-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://gumroad.com/).

---

**Crafted with ❤️ by \[Your Name or Brand\]**

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance49

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

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

Total

13

Last Release

369d ago

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/hoggarcrud-hoggar/health.svg)

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

###  Alternatives

[laravel/dusk

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

1.9k39.6M297](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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