@extends('layouts.frontend')
@section('content')
{{-- pricing part --}}
@include('layouts.frontend-partial.breadcrumb')
@foreach ($info->packages as $key => $row)
{{ strFilter($row->type) }}
@if ($row->is_recommended == 1)
Recommended
@endif
{{ $row->title }}
Choose Plan
@if (!empty($row->features))
@php($allFeatures = json_decode($row->features))
@foreach ($allFeatures as $feature)
-
{{ $feature }}
@endforeach
@endif
@endforeach
@endsection