Files
faveo/code/app/Model/helpdesk/Email/Smtp.php
2015-10-23 14:15:29 +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'];
}