@extends('Frontend.Template.layout') @section('title') Prices @endsection @section('content')

{{ $heading->prices_most }}


@foreach($pricing as $package)

{{ $package->title }}

{{ $package->price }}
    @foreach($pricingfeatures->where('package_id', $package->id) as $pricingfeature)
  • {{ $pricingfeature->name }}
  • @endforeach
@endforeach
@endsection