12 lines
188 B
PHP
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'];
|
|
}
|