mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 18:48:14 -05:00
18 lines
340 B
PHP
18 lines
340 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'];
|
||
|
protected $casts = [
|
||
|
'created_at' => 'timestamp',
|
||
|
'updated_at' => 'timestamp',
|
||
|
'config' => 'array'
|
||
|
];
|
||
|
}
|