{{ $blog->title }}
{{ strlen(strip_tags(convertUtf8($blog->content))) > 100 ? substr(strip_tags(convertUtf8($blog->content)), 0, 100) . '...' : strip_tags(convertUtf8($blog->content)) }}
{{ __('Read More') }}@extends('frontend.layout')
@section('pageHeading')
{{ __('Home') }}
@endsection
@section('metaKeywords')
@if (!empty($seoInfo))
{{ $seoInfo->meta_keyword_home }}
@endif
@endsection
@section('metaDescription')
@if (!empty($seoInfo))
{{ $seoInfo->meta_description_home }}
@endif
@endsection
@section('content')
{{ $catgorySecInfo ? $catgorySecInfo->title : 'CATEGORIES' }}
{{ __('NO CATEGORY FOUND') . '!' }}
{{ $listingSecInfo ? $listingSecInfo->title : 'LISTINGS' }}
{{ __('NO LISTING FOUND') }}
@else
@foreach ($listing_contents as $listing_content)
{{ optional($listing_content)->title }}
@php
$city = null;
$State = null;
$country = null;
if ($listing_content->city_id) {
$city = App\Models\Location\City::Where('id', $listing_content->city_id)->first()
->name;
}
if ($listing_content->state_id) {
$State = App\Models\Location\State::Where('id', $listing_content->state_id)->first()
->name;
}
if ($listing_content->country_id) {
$country = App\Models\Location\Country::Where(
'id',
$listing_content->country_id,
)->first()->name;
}
@endphp
{{ @$city }}@if (@$State)
,{{ $State }}
@endif @if (@$country)
,{{ @$country }}
@endif
@if ($listing_content->max_price && $listing_content->min_price)
{{ symbolPrice($listing_content->min_price) }} -
{{ symbolPrice($listing_content->max_price) }}
{{ @$workProcessSecInfo->title }}
@if ($workProcessSecInfo)
{{ @$workProcessSecInfo->button_text }}
@endif
{{ $process->title }}
{{ $counter->title }}
{{ strlen(strip_tags(convertUtf8($blog->content))) > 100 ? substr(strip_tags(convertUtf8($blog->content)), 0, 100) . '...' : strip_tags(convertUtf8($blog->content)) }}
{{ __('Read More') }}