Files
faveo/app/Model/Update/BarNotification.php
2016-06-13 20:41:55 +05:30

12 lines
188 B
PHP

<?php
namespace App\Model\Update;
use App\BaseModel;
class BarNotification extends BaseModel
{
protected $table = 'bar_notifications';
protected $fillable = ['key', 'value'];
}