19 lines
364 B
PHP
19 lines
364 B
PHP
<?php
|
|
|
|
namespace Webkul\Velocity\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Velocity\Contracts\Category as CategoryContract;
|
|
|
|
class Category extends Model implements CategoryContract
|
|
{
|
|
|
|
protected $table = 'velocity_category';
|
|
|
|
protected $fillable = [
|
|
'category_id',
|
|
'icon',
|
|
'tooltip',
|
|
'status',
|
|
];
|
|
} |