@extends('front.layouts.master') @section('content')
@if(isset($plans) && count($plans) > 0)

Pricing Packages

Select Your Price Plan

@foreach($plans as $plan)

{{ $plan->name }}

{{ $plan->price }}

{{ $plan->description }}

@if(isset($planServices[$plan->id]) && count($planServices[$plan->id]) > 0)
@foreach($planServices[$plan->id] as $service)

{{ $service['name'] }}

@endforeach
@endif
@endforeach
@endif @endsection