PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Relations
<?php namespace Illuminate\Database\Eloquent\Relations; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\Concerns\AsPivot; class Pivot extends Model { use AsPivot; /** * Indicates if the IDs are auto-incrementing. * * @var bool */ public $incrementing = false; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = []; }
[-] MorphMany.php
[edit]
[-] HasOneOrMany.php
[edit]
[-] HasMany.php
[edit]
[-] BelongsToMany.php
[edit]
[-] Pivot.php
[edit]
[+]
..
[-] BelongsTo.php
[edit]
[-] HasOne.php
[edit]
[-] MorphTo.php
[edit]
[-] MorphOne.php
[edit]
[-] HasManyThrough.php
[edit]
[-] HasOneThrough.php
[edit]
[-] MorphToMany.php
[edit]
[-] Relation.php
[edit]
[+]
Concerns
[-] MorphPivot.php
[edit]
[-] MorphOneOrMany.php
[edit]