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

17 lines
295 B
PHP
Executable File

<?php
namespace App\Models;
class BroadcastEmail extends BaseModel
{
protected $table = 'broadcast_emails';
protected $primaryKey = 'id';
public $timestamps = true;
protected $fillable = [
'subject',
'body',
'total_sent',
'created_at',
];
}