Files
faveo/code/app/Model/helpdesk/Utility/MailboxProtocol.php
2015-10-23 14:15:29 +05:30

14 lines
238 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'];
}