- Add explicit $table property to all Eloquent models with Dutch names - Fix pivot table names in belongsToMany relationships - Fix seeder: use valid enum values for afhankelijkheden status Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
40 lines
768 B
PHP
40 lines
768 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\BudgetStatus;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Budget extends Model
|
|
{
|
|
protected $table = 'budgets';
|
|
|
|
protected $fillable = [
|
|
'project_id',
|
|
'bedrag',
|
|
'type',
|
|
'periode',
|
|
'status',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'status' => BudgetStatus::class,
|
|
'bedrag' => 'decimal:2',
|
|
];
|
|
}
|
|
|
|
public function project(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Project::class);
|
|
}
|
|
|
|
public function bestedingen(): HasMany
|
|
{
|
|
return $this->hasMany(Besteding::class);
|
|
}
|
|
}
|