Files
w4rpservices/app/Models/Mail/SentMail.php
2021-02-14 06:49:04 +09:00

23 lines
349 B
PHP

<?php
namespace App\Models\Mail;
use Illuminate\Database\Eloquent\Model;
class SentMail extends Model
{
//Table Name
protected $table = 'sent_mails';
//Timestamps
public $timestamps = false;
protected $fillable = [
'sender',
'recipient',
'reicpient_type',
'subject',
'body',
];
}