jxg/jinxiangguo-master/app/Models/PlatformCallback.php

18 lines
263 B
PHP
Executable File

<?php
namespace App\Models;
use Dcat\Admin\Traits\HasDateTimeFormatter;
use Illuminate\Database\Eloquent\Model;
class PlatformCallback extends Model
{
use HasDateTimeFormatter;
protected $table = 'platform_callback';
protected $guarded = [];
}