diff --git a/app/Models/Project.php b/app/Models/Project.php index 5c15065..9fde576 100644 --- a/app/Models/Project.php +++ b/app/Models/Project.php @@ -69,7 +69,7 @@ class Project extends Model */ public function customer(): BelongsTo { - return $this->belongsTo(Customer::class); + return $this->belongsTo(Customer::class)->withTrashed(); } public function invoices(): HasMany