17 lines
303 B
PHP
17 lines
303 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Ingredient\Models;
|
||
|
|
||
|
use App\Traits\StatusTrait;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class IngredientCategory extends Model
|
||
|
{
|
||
|
USE StatusTrait;
|
||
|
|
||
|
protected $table = 'tbl_ingredient_categories';
|
||
|
protected $guarded = [];
|
||
|
protected $appends = ['status_name'];
|
||
|
|
||
|
}
|