mentors

mentors Git Source Tree


Root/app/models/SentEmail.php

<?php

class SentEmail extends \Eloquent
{
	protected $table = 'sent_emails';

	protected $softDelete = true;

	protected $dates = ['deleted_at'];

	protected $fillable  = array('user_id','from', 'to', 'subject', 'message');
	
}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.12300s using 11 queries.