dd/app/Models/CacheTg.php
2026-01-22 19:08:25 +08:00

18 lines
249 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CacheTg extends Model
{
protected $table = 'cache_tg';
public $timestamps = false;
protected $fillable = [
'status',
'code',
];
}