@php use App\registerModel; $stipe_key_model_instance = new registerModel(); use App\MasterModel; $master_instance = new MasterModel(); use App\DashboardModel; $dash_model_instace = new DashboardModel(); $country_qr = $dash_model_instace->get_country(); @endphp @include('frontend.include.header')
@php $c_url = Request::url(); $plan_id = collect(request()->segments())->last(); $registerModelInstance = new registerModel(); $sub_type = $registerModelInstance->get_PlanName($plan_id); $sub_name = $sub_type->subscription_name; $sub_charges_monthly = $sub_type->monthly_amount; $sub_charges_yearly = $sub_type->yearly_amount; $sub_charges_semiyearly=$sub_type->semiyearly_amount; $sub_charges_quarterly =$sub_type->quarterly_amount @endphp

@php echo $sub_name; @endphp PLAN