*/ protected $fillable = [ 'name', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'id' => 'integer', ]; public function courses(): BelongsToMany { return $this->belongsToMany(Course::class); } }