Files
w4rpservices/app/Models/Mail/SentMail.php
2019-03-17 17:13:19 -05:00

23 lines
351 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',
'subject',
'body',
'recipient',
'recipient_type',
];
}