@if ($plan->plan_type === 'member')
Host's Event Fee (USD) / One Time
${{ $event->event_fee }}
@endif
{{ strtoupper($plan->name) }} (USD) /
{{ getPlanTypeShowName($plan->time_type) }}
${{ $plan->price }}
@if ($plan->plan_type == 'host')
@endif
Total
@if (auth()->user() && auth()->user()->hasRole('Host') && $plan->plan_type === 'host')
${{ $plan->price }}
@else
${{ number_format(getEventById($user->event_id)->event_fee + $plan->price, 2) }}
@endif