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