Files
faveo/app/Model/helpdesk/Utility/MailboxProtocol.php
2016-01-25 20:45:35 +05:30

14 lines
247 B
PHP

<?php namespace App\Model\helpdesk\Utility;
use Illuminate\Database\Eloquent\Model;
class MailboxProtocol extends Model {
public $timestamps = false;
protected $table = 'mailbox_protocol';
protected $fillable = ['id', 'name', 'value'];
}