This commit is contained in:
f4ilji
2025-01-09 09:53:27 +05:00
parent 767cd2680c
commit 7fb6b482b7
7 changed files with 207 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ContactWidget extends Model
{
use HasFactory;
protected $guarded = false;
protected $casts = [
'content' => 'array',
];
}