balajidharma / laravel-category
Laravel nestable custom categories
Installs: 5 629
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- illuminate/support: ^8.71|^9.0|^10.0|^11.0
README
Create database-based Category to your Laravel projects.
Table of Contents
Installation
- Install the package via composer
composer require balajidharma/laravel-category
- Publish the migration and the config/category.php config file with
php artisan vendor:publish --provider="BalajiDharma\LaravelCategory\CategoryServiceProvider"
- Run the migrations
php artisan migrate
Demo
The "Basic Laravel Admin Penel" starter kit come with Laravel Category
Create Category Type
use BalajiDharma\LaravelCategory\Models\CategoryType; CategoryType::create([ 'name' => 'Product Category', 'machine_name' => 'product_category', 'description' => 'Site Product Category', ]);
Category Tree
- Get a category tree by using category type id
use BalajiDharma\LaravelCategory\Models\Category; $items = (new Category)->toTree($type->id);
- Get a category tree by using the category machine name
use BalajiDharma\LaravelCategory\Models\CategoryType; $items = CategoryType::getCategoryTree('product_category');