@extends('front.layout')
@section('meta-keywords', "$setting->package_meta_key")
@section('meta-description', "$setting->package_meta_desc")
@section('content')
{{ $sinfo->package_title }}
@foreach($plans as $key => $plan)
{{ $plan->title }}
{{ __('$') }} {{ $plan->price }}
@if($plan->time)
Per Month
@else
@endif
@php
$feature = explode( ',', $plan->feature );
for ($i=0; $i < count($feature); $i++) {
echo ''.$feature[$i].'
';
}
@endphp
{{ __('Contact Us') }}
@endforeach
@endsection