@extends('layouts.signup') @section('content')
@csrf
@isset($locationDetails->error)

Error! Something went wrong. Please try again later.

@else @if($locationDetails->continent_name == 'Oceania') {{-- --}} @if($monthlyOrYearly == 'monthly') @php $totalAmount = $PlanDetails->PackageOneTimeCostAUD + $PlanDetails->PackageMonthlyCostAUD; @endphp @endif @if($monthlyOrYearly == 'yearly') @php $totalAmount = $PlanDetails->PackageOneTimeCostAUD + $PlanDetails->PackageAnnualCostAUD; @endphp @endif @elseif($locationDetails->continent_name == 'Europe') {{-- --}} @if($monthlyOrYearly == 'monthly') @php $totalAmount = $PlanDetails->PackageOneTimeCostEUR + $PlanDetails->PackageMonthlyCostEUR; @endphp @endif @if($monthlyOrYearly == 'yearly') @php $totalAmount = $PlanDetails->PackageOneTimeCostEUR + $PlanDetails->PackageAnnualCostEUR; @endphp @endif @else {{-- --}} @if($monthlyOrYearly == 'monthly') @php $totalAmount = $PlanDetails->PackageOneTimeCostUSD + $PlanDetails->PackageMonthlyCostUSD; @endphp @endif @if($monthlyOrYearly == 'yearly') @php $totalAmount = $PlanDetails->PackageOneTimeCostUSD + $PlanDetails->PackageAnnualCostUSD; @endphp @endif @endif @endisset
@if($locationDetails->continent_name == 'Oceania') @elseif($locationDetails->continent_name == 'Europe') @else @endif

Payment successful

@endsection