changes
This commit is contained in:
15
Modules/Setting/app/Models/Setting.php
Normal file
15
Modules/Setting/app/Models/Setting.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Setting\Models;
|
||||
|
||||
use App\Traits\StatusTrait;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Setting extends Model
|
||||
{
|
||||
use StatusTrait;
|
||||
|
||||
protected $table = 'tbl_settings';
|
||||
protected $guarded = [];
|
||||
protected $appends = ['status_name'];
|
||||
}
|
Reference in New Issue
Block a user