@php $plan = getContent('plan.content',true); $plans = App\Models\Plan::where('status',1)->orderBy('created_at','desc')->take(3)->get(); @endphp
{{__($plan->data_values->top_heading)}}

{{__($plan->data_values->heading)}}

{{__($plan->data_values->sub_heading)}}

@foreach ($plans as $item)

{{__($general->cur_sym)}} {{showAmount($item->price)}}{{$item->type==1 ? '/m' : '/y'}}

{{__($item->name)}}

    @if(@$item->content) @foreach(json_decode(@$item->content) as $value)
  • {{$value}}
  • @endforeach @endif
@endforeach