11/5/2022
This commit is contained in:
23
app/Models/HistoryPlay.php
Normal file
23
app/Models/HistoryPlay.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class HistoryPlay extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $fillable = [
|
||||
'tranId',
|
||||
'partnerName',
|
||||
'partnerId',
|
||||
'comment',
|
||||
'amount',
|
||||
'receive',
|
||||
'status',
|
||||
'pay',
|
||||
'game',
|
||||
'phoneSend'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user