Skip to content

Commit 8a891e1

Browse files
committed
fix conflicts
2 parents b79050d + da9b18a commit 8a891e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eloquent-relationships.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ You can also filter the results returned by `belongsToMany` using the `wherePivo
325325

326326
#### Defining Custom Intermediate Table Models
327327

328-
If you would like to define a custom model to represent the intermediate table of your relationship, you may call the `using` method when defining the relationship. All custom models used to represent intermediate tables of relationships must extend the `Illuminate\Database\Eloquent\Relations\Pivot` class. For example, we may define a `Role` which uses a custom `UserRole` pivot model:
328+
If you would like to define a custom model to represent the intermediate table of your relationship, you may call the `using` method when defining the relationship. Custom many-to-many pivot models should extend the `Illuminate\Database\Eloquent\Relations\Pivot` class while custom polymorphic many-to-many pivot models should extend the `Illuminate\Database\Eloquent\Relations\MorphPivot` class. For example, we may define a `Role` which uses a custom `UserRole` pivot model:
329329

330330
<?php
331331

scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Method | Description
115115
`->dailyAt('13:00');` | Run the task every day at 13:00
116116
`->twiceDaily(1, 13);` | Run the task daily at 1:00 & 13:00
117117
`->weekly();` | Run the task every week
118-
`->weeklyOn(1, '8:00');` | Run the task every week on Tuesday at 8:00
118+
`->weeklyOn(1, '8:00');` | Run the task every week on Monday at 8:00
119119
`->monthly();` | Run the task every month
120120
`->monthlyOn(4, '15:00');` | Run the task every month on the 4th at 15:00
121121
`->quarterly();` | Run the task every quarter

0 commit comments

Comments
 (0)