GithubHelp home page GithubHelp logo

categories's Introduction

Laravel 5 Shared Category Package

This package manages categories in a shared table

Requirements

This package currently requires Laravel >= 5.0

Installation

require by packagist

composer require JLeonardoLemos/categories

  composer require JLeonardoLemos/categories

Add service provider on array in app.php

  'JLeonardoLemos\Categories\Providers\CategoriesServiceProvider',

Or

  JLeonardoLemos\Categories\Providers\CategoriesServiceProvider::class,

Configure your model

  use JLeonardoLemos\Categories\CategoryableContract;
  use JLeonardoLemos\Categories\CategoryableTrait;
  class ModelName extends Model implements CategoryableContract
  {

  use CategoryableTrait;

On views

  {!! Category::select('Categoria', 'group_slug') !!}

Obs: use group slug to bring only a specific category group

publish migrations

  php artisan vendor:publish

run migrations

  php artisan migrate

How to use

Seed your categories table, you can to use any Eloquent method to handle this categories

  	Category::create([
        'name' => 'category 1'
        , 'group_slug' => 'group 1'
        , 'description' => ''
    ]);

  	Category::create([
        'name' => 'category 2'
        , 'group_slug' => 'group 1'
        , 'description' => ''
    ]);    

Obs: The categories are grouped by group_slug

You must to create the relationship with category table only once

	$model->categoriesSet()->create([
		'category_id' => 1
    ]);

If the relationship is created, you can update it

	$categoriesSet = $new->categoriesSet()->first();
	$categoriesSet->category_id = 4;
	$categoriesSet->save();

Access the category

	$model->category

Recursive

The category model has a category_id attribute, this is the parent category id

To access the parent of a given model

	Category::first()->daddy

To access the children

	Category::first()->dearChildren

categories's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.