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

14 lines
239 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'];
}