v2board/app/Models/Payment.php
2021-04-28 17:56:08 +09:00

13 lines
206 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Payment extends Model
{
protected $table = 'v2_payment';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}