feat: Add change orders system with client approval/rejection and integrate with client portal

This commit is contained in:
2026-05-25 19:08:06 +02:00
parent 07ffce437f
commit 4ab7935c17
6 changed files with 166 additions and 323 deletions
+36
View File
@@ -0,0 +1,36 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class ChangeOrder extends Model
{
protected $fillable = [
'project_id',
'title',
'description',
'amount',
'status',
'requested_at',
'responded_at',
'responded_by',
];
protected $casts = [
'requested_at' => 'date',
'responded_at' => 'date',
'amount' => 'decimal:2',
];
public function project(): BelongsTo
{
return $this->belongsTo(Project::class);
}
public function responder(): BelongsTo
{
return $this->belongsTo(User::class, 'responded_by');
}
}