@extends('layouts.app') @push('css') @endpush @section('content') @php $translate = $plan->translateOrOrigin(app()->getLocale()); if(request()->query('annual')!=1){ $price = $plan->price; $duration_text = $plan->duration_type_text; }else{ $price = $plan->annual_price; $duration_text = __('Year'); } $term_conditions = setting_item('booking_term_conditions'); @endphp
@include('admin.message')

{{ setting_item_with_lang('user_plans_page_title', app()->getLocale()) ?? __("Pricing Packages")}}

@csrf
{{$translate->title}}
{{ format_money($price)}} @if($price) / {{$duration_text}} @endif
{!! clean($translate->content) !!}
@include('Booking::frontend.booking.checkout-payment')
@if(setting_item("booking_enable_recaptcha"))
{{recaptcha_field('booking')}}
@endif
@endsection @section('footer') @endsection