This commit is contained in:
2025-07-04 10:17:36 +05:00
parent aaf8d067f9
commit 647979fdef
4 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models\CMS;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property int $user_id
* @property string $title
* @property string $message
* @property \Illuminate\Support\Facades\Date $created_at
* @property \Illuminate\Support\Facades\Date $updated_at
*/
class ContactUs extends Model
{
use HasFactory;
}