update: add commission distribution

This commit is contained in:
tokumeikoi
2021-09-18 21:04:35 +09:00
parent edfc4043e8
commit 25b3b11efd
4 changed files with 54 additions and 2 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CommissionLog extends Model
{
protected $table = 'v2_commission_log';
protected $dateFormat = 'U';
protected $guarded = ['id'];
protected $casts = [
'created_at' => 'timestamp',
'updated_at' => 'timestamp'
];
}