mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-13 10:36:52 +08:00
- Fix known bugs in user, plan, and server modules - Standardize code formatting and structure - Optimize database queries and model relationships - Improve request validation and error handling - Update admin controllers for better consistency
17 lines
317 B
PHP
17 lines
317 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class InviteCode extends Model
|
|
{
|
|
protected $table = 'v2_invite_code';
|
|
protected $dateFormat = 'U';
|
|
protected $casts = [
|
|
'created_at' => 'timestamp',
|
|
'updated_at' => 'timestamp',
|
|
'status' => 'boolean',
|
|
];
|
|
}
|