migrate to gtea from bistbucket
This commit is contained in:
22
app/Models/ProductSetting.php
Normal file
22
app/Models/ProductSetting.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ProductSetting extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'business_id',
|
||||
'modules'
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'modules' => 'json',
|
||||
'business_id' => 'integer',
|
||||
'branch_id' => 'integer'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user