<?php
namespace App;

use Illuminate\Database\Eloquent\Model;

class MailSettings extends Model
{
    protected $table='mail_settings';

    protected $primaryKey = 'id';

    protected $fillable = ['mailkey','domain','from_mail_id','from_mail_name'];

}
