cmandersen / has-one-specific
Add a Laravel relationship where you can specify a set ID, instead of a dynamic relationship
Installs: 6 147
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.3|^8.0
- illuminate/database: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
This package is auto-updated.
Last update: 2025-03-24 11:42:37 UTC
README
Add a Laravel relationship where you can specify a set ID, instead of a dynamic relationship
Installation
composer require cmandersen/has-one-specific
Usage
This package is basically just a trait that uses a relationship class, so it's just a case of using the trait where you need it.
class User extends Model { use \CMAndersen\HasOneSpecific\HasOneSpecific; public function company(){ return $this->hasOneSpecific(Company::class, 97); } }