Hintergrundverwaltung und leere Hüllen; neuaufsetzen submodule

This commit is contained in:
2026-03-23 23:40:20 +01:00
parent a2751d4776
commit 122af4aa54
32 changed files with 32012 additions and 45 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @method static \Illuminate\Database\Eloquent\Builder<static>|RegisterToken newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|RegisterToken newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|RegisterToken query()
* @mixin \Eloquent
*/
class RegisterToken extends Model
{
protected $table = 'register_tokens';
protected $primaryKey = 'token';
public $incrementing = false;
public $timestamps = false;
}