@extends('layouts.main-layout') @section('title') {{$ratePlan->RatePlanName}} Details | Dashboard @endsection @section('content')

Rate Plan Details

  • Rate Plan ID: {{$ratePlan->RatePlanId}}
  • Rate Plan Name: {{$ratePlan->RatePlanName}}
  • Rate Plan Code: {{$ratePlan->RatePlanCode}}
  • Rate Plan Access Code: {{$ratePlan->RatePlanAccessCode}}
  • Accommodation Name: {{$ratePlan->accommodation->AccommodationName}}
  • Language: {{$ratePlan->language->MultiLanguageName}}
  • @if($roomType = $ratePlan->roomType)
  • Room Type: {{$roomType->RoomTypeName}}
  • @else
  • Room Type: -----
  • @endif @if($bookingType = $ratePlan->bookingType)
  • Booking Type: {{$bookingType->BookingTypeName}}
  • @else
  • Booking Type: -----
  • @endif
  • Booking Window From (Days): {{$ratePlan->BookingWindowFrom}}
  • Booking Window To (Days): {{$ratePlan->BookingWindowTo}}
  • Maximum Guests: {{$ratePlan->GuestQuantity}}
  • Minimum Days To Stay: {{$ratePlan->DefaultMinStay}}
  • Maximum Days To Stay: {{$ratePlan->DefaultMaxStay}}
  • Default Rates: {{$ratePlan->DefaultRates}}
  • On Request: {{$ratePlan->OnRequest ? 'Allowed' : 'Not Allowed'}}
  • Last Modified: {{$ratePlan->LastModified->diffForHumans()}}
Created By: {{$ratePlan->owner->UserName}} , {{$ratePlan->CreateDate->diffForHumans()}}
@hasAccess('Edit Rate Plan') Edit @endhasAccess @hasAccess('Delete Rate Plan') Delete @component('components.confirm',[ 'modal' => 'modal-delete', 'id' => 'delete-form', 'title' => 'Rate Plan' ]) @endcomponent
@csrf @method('DELETE')
@endhasAccess
@endsection