Files
faveo/app/Model/helpdesk/Utility/Time_format.php
2016-02-19 02:20:12 -05:00

13 lines
237 B
PHP

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