Laravel – How to create hasOne relationship from hasMany but with conditions?
I am trying to create a HasOne relationship out of HasMany relationship but with added conditions. These are my models Document.php class Document extends Model { public function approvals(): HasMany { return $this->hasMany(Approval::class); } public function nextApproval(): HasOne { return…