|
8 | 8 | - [Has One of Many](#has-one-of-many)
|
9 | 9 | - [Has One Through](#has-one-through)
|
10 | 10 | - [Has Many Through](#has-many-through)
|
| 11 | +- [Scoped Relationships](#scoped-relationships) |
11 | 12 | - [Many to Many Relationships](#many-to-many)
|
12 | 13 | - [Retrieving Intermediate Table Columns](#retrieving-intermediate-table-columns)
|
13 | 14 | - [Filtering Queries via Intermediate Table Columns](#filtering-queries-via-intermediate-table-columns)
|
@@ -612,6 +613,53 @@ return $this->through('environments')->has('deployments');
|
612 | 613 | return $this->throughEnvironments()->hasDeployments();
|
613 | 614 | ```
|
614 | 615 |
|
| 616 | +<a name="scoped-relationships"></a> |
| 617 | +### Scoped Relationships |
| 618 | + |
| 619 | +It's common to add additional methods to models that constrain relationships. For example, you might add a `featuredPosts` method to a `User` model which constrains the broader `posts` relationship with an additional `where` constraint: |
| 620 | + |
| 621 | + <?php |
| 622 | + |
| 623 | + namespace App\Models; |
| 624 | + |
| 625 | + use Illuminate\Database\Eloquent\Model; |
| 626 | + use Illuminate\Database\Eloquent\Relations\HasMany; |
| 627 | + |
| 628 | + class User extends Model |
| 629 | + { |
| 630 | + /** |
| 631 | + * Get the user's posts. |
| 632 | + */ |
| 633 | + public function posts(): HasMany |
| 634 | + { |
| 635 | + return $this->hasMany(Post::class)->latest(); |
| 636 | + } |
| 637 | + |
| 638 | + /** |
| 639 | + * Get the user's featured posts. |
| 640 | + */ |
| 641 | + public function featuredPosts(): HasMany |
| 642 | + { |
| 643 | + return $this->posts()->where('featured', true); |
| 644 | + } |
| 645 | + } |
| 646 | + |
| 647 | +However, if you attempt to create a model via the `featuredPosts` method, its `featured` attribute would not be set to `true`. If you would like to create models via relationship methods and also specify attributes that should be added to all models created via that relationship, you may use the `withAttributes` method when building the relationship query: |
| 648 | + |
| 649 | + /** |
| 650 | + * Get the user's featured posts. |
| 651 | + */ |
| 652 | + public function featuredPosts(): HasMany |
| 653 | + { |
| 654 | + return $this->posts()->withAttributes(['featured' => true]); |
| 655 | + } |
| 656 | + |
| 657 | +The `withAttributes` method will add `where` clause constraints to the query using the given attributes, and it will also add the given attributes to any models created via the relationship method: |
| 658 | + |
| 659 | + $post = $user->featuredPosts()->create(['title' => 'Featured Post']); |
| 660 | + |
| 661 | + $post->featured; // true |
| 662 | + |
615 | 663 | <a name="many-to-many"></a>
|
616 | 664 | ## Many to Many Relationships
|
617 | 665 |
|
@@ -781,6 +829,11 @@ You can also filter the results returned by `belongsToMany` relationship queries
|
781 | 829 | ->as('subscriptions')
|
782 | 830 | ->wherePivotNotNull('expired_at');
|
783 | 831 |
|
| 832 | +The `wherePivot` adds a where clause constraint to the query, but does not add the specified value when creating new models via the defined relationship. If you need to both query and create relationships with a particular pivot value, you may use the `withPivotValue` method: |
| 833 | + |
| 834 | + return $this->belongsToMany(Role::class) |
| 835 | + ->withPivotValue('approved', 1); |
| 836 | + |
784 | 837 | <a name="ordering-queries-via-intermediate-table-columns"></a>
|
785 | 838 | ### Ordering Queries via Intermediate Table Columns
|
786 | 839 |
|
|
0 commit comments