chore: remove APAW from tracking; gitignore agent-generated files

This commit is contained in:
Deploy Bot
2026-06-20 01:32:54 +01:00
parent d6dedfb513
commit 6aa41381ac
362 changed files with 48506 additions and 13261 deletions

62
app/User.php Normal file
View File

@@ -0,0 +1,62 @@
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Spatie\Permission\Traits\HasRoles;
class User extends Authenticatable
{
use Notifiable,
HasRoles;
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
/**
* Get the user settings.
*/
public function settings()
{
return $this->hasOne(\App\UserSetting::class);
}
/**
* Get the assigned form for the user
*/
public function userForms()
{
return $this->hasMany(\App\UserForm::class, 'assigned_to');
}
/**
* Get the forms created by the user
*/
public function createdForms()
{
return $this->hasMany(\App\Form::class, 'created_by');
}
}