Files
faveo/app/Model/helpdesk/Email/Banlist.php
2016-02-16 22:42:08 +05:30

15 lines
251 B
PHP

<?php
namespace App\Model\helpdesk\Email;
use Illuminate\Database\Eloquent\Model;
class Banlist extends Model {
protected $table = 'banlist';
protected $fillable = [
'id', 'ban_status', 'email_address', 'internal_notes',
];
}