Pivot.php 468 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Illuminate\Database\Eloquent\Relations;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\Concerns\AsPivot;
  5. class Pivot extends Model
  6. {
  7. use AsPivot;
  8. /**
  9. * Indicates if the IDs are auto-incrementing.
  10. *
  11. * @var bool
  12. */
  13. public $incrementing = false;
  14. /**
  15. * The attributes that aren't mass assignable.
  16. *
  17. * @var array<string>|bool
  18. */
  19. protected $guarded = [];
  20. }