Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 760 Bytes

README.md

File metadata and controls

48 lines (36 loc) · 760 Bytes

Code Generator for Laravel

Installation

You can install the package via composer:

composer require jeylabs/laravel-code-generator

Usage

<?php

namespace App;

use Jeylabs\CodeGenerator\Traits\Code;
use Illuminate\Database\Eloquent\Model;

class Product extends Model
{
    use Code;

    static $codePrefix = 'PRO';
}

Example : PRO0000001

If you want to customize your code column

static $codeColumn = 'code';

If you want to set the prefix base on conditions

static $codePrefix = [
        "RM" => [
            'column' => 'type',
            'value' => 'Raw Materials'
        ],
        "FG" => [
            'column' => 'type',
            'value' => 'Finished Goods'
        ]
    ];