first commit
This commit is contained in:
15
app/common/model/PaymentTransaction.php
Normal file
15
app/common/model/PaymentTransaction.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
namespace app\common\model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PaymentTransaction extends Model
|
||||
{
|
||||
protected $table = 'payment_transactions';
|
||||
protected $guarded = [];
|
||||
protected $hidden = ['updated_at'];
|
||||
|
||||
protected $casts = [
|
||||
'raw_json' => 'array',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user