Files
alrahma_sunday_school_api/app/Models/FamilyCommPref.php
T
2026-03-05 12:29:37 -05:00

20 lines
372 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class FamilyCommPref extends Model
{
protected $table = 'family_comm_prefs';
protected $fillable = [
'family_id',
'category',
'via_email',
'via_sms',
'cc_all_guardians',
'created_at',
'updated_at',
];
public $timestamps = true;
}