'boolean', 'gallery_media' => 'array', 'lat' => 'float', 'lng' => 'float', 'sort' => 'integer', 'live_people_count' => 'integer', ]; public function admins(): BelongsToMany { return $this->belongsToMany(User::class, 'user_venue')->withTimestamps(); } public function reservations(): HasMany { return $this->hasMany(Reservation::class); } }