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

13 lines
214 B
PHP

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