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

21 lines
400 B
PHP

<?php
namespace App\Models;
use App\Models\BaseModel;
class UserNotification extends BaseModel
{
protected $table = 'user_notifications';
protected $primaryKey = 'id';
protected $fillable = [
'notification_id',
'user_id',
'is_read',
'delivered',
'delivered_at',
'school_year',
'semester',
];
public $timestamps = false;
}