1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 11:22:42 +01:00
freescout/app/Job.php

14 lines
228 B
PHP
Raw Normal View History

2018-08-02 18:17:13 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Job extends Model
{
/**
* Automatically converted into Carbon dates.
*/
protected $dates = ['created_at', 'available_at', 'reserved_at'];
}