Files
faveo/app/Model/helpdesk/Utility/Log_notification.php
2016-06-13 20:41:55 +05:30

12 lines
195 B
PHP

<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class Log_notification extends BaseModel
{
protected $table = 'log_notification';
protected $fillable = ['id', 'log'];
}