no message

This commit is contained in:
hellcat 2025-07-19 10:52:08 +08:00
parent 02e1c457eb
commit 0e845c62c3

19
app/Models/Me.php Executable file
View File

@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Me extends Model
{
protected $table = 'me';
public $timestamps = false;
protected $fillable = [
'rag',
'class',
];
// public static function
}