@extends('front.layouts.master') @section('seo_title', $global_other_page_items->page_pricing_seo_title) @section('seo_meta_description', $global_other_page_items->page_pricing_seo_meta_description) @section('content')

{{ $global_other_page_items->page_pricing_title }}

@foreach($pricing_plans as $item)
@csrf

{{ $global_setting->currency_symbol }}{{ $item->price }}

/ {{ $item->period }}

{{ $item->name }}

    @php $option_list = DB::table('pricing_plan_options')->where('pricing_plan_id', $item->id)->get(); @endphp @foreach($option_list as $item1)
  • {{ $item1->name }}
  • @endforeach
@endforeach
@endsection