- Frontend: Vue 3 + Inertia.js + Pinia + Tailwind CSS with layout and dashboard page - Infrastructure: Docker Compose with nginx, PHP-FPM, PostgreSQL+pgvector, Redis, Python AI service - Database: 22 migrations covering all domain entities (projects, phases, commitments, decisions, documents, handover, audit) - Models: 23 Eloquent models with relationships, casts, and 14 string-backed enums - AI service: FastAPI scaffold with health, chat, summarize, and search endpoints Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
89 lines
2.0 KiB
PHP
89 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\ProjectRol;
|
|
use Database\Factories\UserFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class User extends Authenticatable
|
|
{
|
|
/** @use HasFactory<UserFactory> */
|
|
use HasFactory, Notifiable;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'password',
|
|
'functie',
|
|
'afdeling',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'email_verified_at' => 'datetime',
|
|
'password' => 'hashed',
|
|
];
|
|
}
|
|
|
|
// Relationships
|
|
|
|
public function roles(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Role::class);
|
|
}
|
|
|
|
public function projects(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Project::class)
|
|
->withPivot('rol')
|
|
->withTimestamps()
|
|
->using(ProjectUser::class);
|
|
}
|
|
|
|
public function eigenProjecten(): HasMany
|
|
{
|
|
return $this->hasMany(Project::class, 'eigenaar_id');
|
|
}
|
|
|
|
public function eigenSpeerpunten(): HasMany
|
|
{
|
|
return $this->hasMany(Speerpunt::class, 'eigenaar_id');
|
|
}
|
|
|
|
public function commitments(): HasMany
|
|
{
|
|
return $this->hasMany(Commitment::class, 'eigenaar_id');
|
|
}
|
|
|
|
public function acties(): HasMany
|
|
{
|
|
return $this->hasMany(Actie::class, 'eigenaar_id');
|
|
}
|
|
|
|
public function documents(): HasMany
|
|
{
|
|
return $this->hasMany(Document::class, 'auteur_id');
|
|
}
|
|
|
|
public function kennisArtikelen(): HasMany
|
|
{
|
|
return $this->hasMany(KennisArtikel::class, 'auteur_id');
|
|
}
|
|
|
|
public function auditLogs(): HasMany
|
|
{
|
|
return $this->hasMany(AuditLog::class);
|
|
}
|
|
}
|