add projet
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user