<?php
namespace IlluminateDatabaseEloquentRelations;
use IlluminateDatabaseEloquentModel;
use IlluminateDatabaseEloquentRelationsConcernsAsPivot;
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 = [];
}