add projet

This commit is contained in:
root
2026-03-05 12:29:37 -05:00
parent 8d1eef8ba8
commit 23b7db1107
9109 changed files with 1106501 additions and 73 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class FamilyGuardian extends Model
{
protected $table = 'family_guardians';
protected $fillable = [
'family_id',
'user_id',
'relation',
'is_primary',
'receive_emails',
'receive_sms',
'custody_notes',
'created_at',
'updated_at',
];
public $timestamps = true;
}