Files
faveo/code/app/Model/Utility/MailboxProtocol.php
2015-05-01 13:33:56 +05:30

12 lines
201 B
PHP

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