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

13 lines
220 B
PHP

<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class Time_format extends BaseModel
{
public $timestamps = false;
protected $table = 'time_format';
protected $fillable = ['id', 'format'];
}