Concerns
1 month ago
BelongsTo.php
2 years ago
BelongsToMany.php
1 month ago
HasMany.php
2 years ago
HasManyThrough.php
1 month ago
HasOne.php
1 month ago
HasOneOrMany.php
1 month ago
HasOneThrough.php
2 years ago
MorphMany.php
2 years ago
MorphOne.php
1 month ago
MorphOneOrMany.php
2 years ago
MorphPivot.php
1 month ago
MorphTo.php
6 months ago
MorphToMany.php
2 years ago
Pivot.php
2 years ago
Relation.php
1 month ago
Pivot.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Database\Eloquent\Relations; |
| 4 | |
| 5 | use IAWPSCOPED\Illuminate\Database\Eloquent\Model; |
| 6 | use IAWPSCOPED\Illuminate\Database\Eloquent\Relations\Concerns\AsPivot; |
| 7 | /** @internal */ |
| 8 | class Pivot extends Model |
| 9 | { |
| 10 | use AsPivot; |
| 11 | /** |
| 12 | * Indicates if the IDs are auto-incrementing. |
| 13 | * |
| 14 | * @var bool |
| 15 | */ |
| 16 | public $incrementing = \false; |
| 17 | /** |
| 18 | * The attributes that aren't mass assignable. |
| 19 | * |
| 20 | * @var array |
| 21 | */ |
| 22 | protected $guarded = []; |
| 23 | } |
| 24 |