Updates to 03-2025

This commit is contained in:
Kevin Adametz 2025-04-01 10:39:21 +02:00
parent 6167273a48
commit 9b54eb0512
348 changed files with 34535 additions and 5774 deletions

View file

@ -0,0 +1,45 @@
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class UserRegister
*
* @property string $identifier
* @property string $instance
* @property string $content
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @package App\Models
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister query()
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereIdentifier($value)
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereInstance($value)
* @method static \Illuminate\Database\Eloquent\Builder|UserRegister whereUpdatedAt($value)
* @mixin \Eloquent
*/
class UserRegister extends Model
{
protected $table = 'user_registers';
public $incrementing = false;
protected $casts = [
'content' => 'object'
];
protected $fillable = [
'identifier', 'instance', 'content'
];
}