16 lines
299 B
PHP
16 lines
299 B
PHP
<?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',
|
|
];
|
|
}
|