Files
alliance-services/app/Models/Mail/SentMail.php
2026-03-10 02:10:28 -05:00

31 lines
490 B
PHP

<?php
namespace App\Models\Mail;
use Illuminate\Database\Eloquent\Model;
class SentMail extends Model
{
// Table Name
protected $table = 'sent_mails';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'sender',
'subject',
'body',
'recipient',
'recipient_type',
];
}