Files
w4rpservices/app/Models/Mail/SentMail.php
2019-04-02 15:16:36 -05: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',
'subject',
'body',
'recipient',
'recipient_type',
];
}