{{ __('hotel::modules.ratePlan.ratePlans') }}

@if(user_can('Create Hotel Rate Plan')) {{ __('hotel::modules.ratePlan.addRatePlan') }} @endif
@forelse ($ratePlans as $plan) @empty @endforelse
{{ __('hotel::modules.ratePlan.name') }} {{ __('hotel::modules.ratePlan.planType') }} {{ __('hotel::modules.ratePlan.cancellation') }} {{ __('hotel::modules.ratePlan.status') }} {{ __('hotel::modules.ratePlan.action') }}
{{ $plan->name }} {{ $plan->type->label() }} @if($plan->cancellation_hours) {{ __('hotel::modules.ratePlan.hoursBefore', ['hours' => $plan->cancellation_hours, 'percent' => $plan->cancellation_charge_percent]) }} @else {{ __('hotel::modules.ratePlan.noFreeCancellation') }} @endif @if($plan->is_active) {{ __('hotel::modules.ratePlan.active') }} @else {{ __('hotel::modules.ratePlan.inactive') }} @endif @if(user_can('Update Hotel Rate Plan')) {{ __('hotel::modules.ratePlan.update') }} @endif @if(user_can('Delete Hotel Rate Plan')) @endif

{{ __('hotel::modules.ratePlan.noRatePlansAdded') }}

{{ __('hotel::modules.ratePlan.addRatePlan') }} @if ($showAddRatePlanModal) @endif {{ __('hotel::modules.ratePlan.close') }} @if ($activeRatePlan) {{ __('hotel::modules.ratePlan.editRatePlan') }} {{ __('hotel::modules.ratePlan.close') }} {{ __('hotel::modules.ratePlan.deleteRatePlan') }} {{ __('hotel::modules.ratePlan.deleteRatePlanMessage') }} {{ __('hotel::modules.ratePlan.cancel') }} {{ __('app.delete') }} @endif