@extends('layouts.app') @section('content')
@if(session()->has('status'))
{{ session('status') }}
@endif

{{ $hotel->name }}

@if($prices->count() > 0) @foreach($prices as $price)

{{ date('d-m-Y', strtotime($price->date)) }} | {{ $price->num_of_nights }} nights

{{ $price->room_type }}

FIBULA / VAS

{{ $price->checkPriceFibulaVas() }}
@if(is_null($price->fibula_price)) N/A @else{{ $price->fibula_price }}@endif / @if(is_null($price->vas_price)) N/A @else{{ $price->vas_price }}@endif

FIBULA / M97

{{ $price->checkPriceFibulaM97() }}
@if(is_null($price->fibula_price)) N/A @else{{ $price->fibula_price }}@endif / @if(is_null($price->m97_price)) N/A @else{{ $price->m97_price }}@endif

FIBULA / CENTROTOURS

{{ $price->checkPriceFibulaCentrotours() }}
@if(is_null($price->fibula_price)) N/A @else{{ $price->fibula_price }}@endif / @if(is_null($price->centrotours_price)) N/A @else{{ $price->centrotours_price }}@endif

@endforeach @else

There are no prices added for this hotel.

@endif
@endsection