@extends('layouts.front') @push('css') @endpush @section('content') @if (in_array('Banner', $home_modules))
@endif @if (in_array('Category', $home_modules))
{{ $ps->category_title }}

{{ $ps->category_subtitle }}

@foreach ($categories as $key=>$data)
{{ $data->listings->where('status',1)->count()}} @lang('Listings')

{{ $data->title }}

@endforeach
@endif @if (in_array('Feature Directory', $home_modules))

{{ $ps->directory_title }}

@foreach ($featured_listing as $key=>$listing)
{{ $listing->openClose($listing->id) }}
@if ($listing->is_feature) @endif
@if ($listing->user_id == NULL && $listing->admin_id == NULL) @else @endif

{{ $listing->name }}

{{ $listing->real_address }}
{{ $listing->phone_number }}
@endforeach
@endif @if (in_array('Packages', $home_modules))
{{ $ps->plan_title }}

{{ $ps->plan_subtitle }}

@if (count($plans)>0) @foreach ($plans as $index => $data)

{{ globalCurrency()->sign}}{{ showAmount($data->price) }} @if ($data->prev_price>0) {{ globalCurrency()->sign}}{{ showAmount($data->prev_price) }} @endif

{{ $data->title }}

{{ $data->subtitle }}
    @if ($data->attribute != NULL) @foreach (json_decode($data->attribute) as $key => $attribute)
  • {{ $attribute }}
  • @endforeach @endif
@endforeach @endif
@endif @if (in_array('Faq', $home_modules))
Ask Questions

Frequently Asked Questions

@foreach ($faqs as $key=>$data)
{{ $data->details }}
@endforeach
@endif @if (in_array('CTAs', $home_modules)) @include('partials.front.cta') @endif @include('partials.front.footer') @endsection @push('js') @endpush