Files
faveo/app/Model/helpdesk/Email/Smtp.php
2015-12-22 14:09:23 +05:30

10 lines
263 B
PHP

<?php namespace App\Model\helpdesk\Email;
use Illuminate\Database\Eloquent\Model;
class Smtp extends Model
{
public $timestamps = false;
protected $table = 'send_mail';
protected $fillable = ['driver','port','host','encryption','name','email','password'];
}