*/ protected $fillable = [ 'tenant_id', 'platform', 'url', 'icon', 'display_order', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'display_order' => 'integer', ]; /** * Get the club that owns the social link. */ public function tenant(): BelongsTo { return $this->belongsTo(Tenant::class); } }