This commit is contained in:
root
2019-12-12 19:47:32 +08:00
parent 1b92b6374c
commit aa07facebd
8 changed files with 123 additions and 4 deletions

View File

@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class TicketMessage extends Model
{
protected $table = 'v2_ticket_message';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}