mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-04 12:00:56 +08:00
- feat: add plan price validation - feat: make traffic packages stackable - feat: add commission and invite info to admin order details - feat: apply email whitelist to verification code API - fix: subscription link copy compatibility for non-HTTPS - fix: resolve route editing 500 error in certain cases - refactor: restructure traffic reset logic
18 lines
348 B
PHP
Executable File
18 lines
348 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ServerRoute extends Model
|
|
{
|
|
protected $table = 'v2_server_route';
|
|
protected $dateFormat = 'U';
|
|
protected $guarded = ['id'];
|
|
protected $casts = [
|
|
'created_at' => 'timestamp',
|
|
'updated_at' => 'timestamp',
|
|
'match' => 'array'
|
|
];
|
|
}
|