@extends('frontend.layouts.app') @section('title', $title) @php $reasons = config()->get('static_array.report_type'); @endphp @section('meta') @endsection @push('style') @endpush @section('content') @php $adID = $ad?->id; @endphp @include('frontend.layouts.includes.breadcrumb', [ 'links' => [ ['Ads' => route('ads')], [$ad?->belongsToCity?->name => route('ads', ['location' => $ad?->belongsToCity?->slug])], [ $ad?->belongsToCategory?->name => route('ads', [ 'location' => $ad?->belongsToCity?->slug, 'category' => $ad?->belongsToCategory?->slug, ]), ], [ $title => route('ads.details', [ 'location' => $ad->city_slug, 'category' => $ad->category_slug, 'scategory' => $ad->subcategory_slug, 'slug' => $ad->slug, ]), ], ], ])
{{-- Ad Image Size > 728*90px --}} @forelse ($banners as $banner) Banner Ad @empty Banner Ad @endforelse
@if ($ad->status != 'active' || $ad->verification_status != 'verified') @if ($ad->status=='sold')
This ad already SOLD out.
@else
Ads is not available or has been removed by the owner.
@endif @endif

{{ $ad?->title }}

Posted on {{ date('d-m-Y h:i a', strtotime($ad?->created_at)) }}, {{ $ad?->belongsToRegion?->name }}, {{ $ad?->belongsToCity?->name }}
@if ($ad->category_slug && $ad->category_slug != 'jobs') @if ($ad->negotiable == '1')
Negotiable
@else
{{ $setting?->currency_symbol }} {{ $ad?->price }} @if ($ad->category_slug && $ad->category_slug == 'property') {{ $ad?->hasOneAdsInfo?->property_price_type }} @endif
@endif @endif
    @if ($ad?->condition)
  • Condition : {{ $ad?->condition }}
  • @endif @if ($ad?->belongsToBrand?->name)
  • Brand : {{ $ad?->belongsToBrand?->name }}
  • @endif @if ($ad?->model)
  • Model : {{ $ad?->model }}
  • @endif @if ($ad?->edition)
  • Edition : {{ $ad?->edition }}
  • @endif @if ($ad?->authenticity)
  • Authenticity : {{ $ad?->authenticity }}
  • @endif @if ($ad?->hasOneAdsInfo?->designation)
  • Designation : {{ $ad?->hasOneAdsInfo?->designation }}
  • @endif @if ($ad?->hasOneAdsInfo?->job_type)
  • Job Type : {{ $ad?->hasOneAdsInfo?->job_type }}
  • @endif @if ($ad?->hasOneAdsInfo?->experience)
  • Experience : {{ $ad?->hasOneAdsInfo?->experience }} years
  • @endif @if ($ad?->hasOneAdsInfo?->required_education)
  • Education Qualification : {{ $ad?->hasOneAdsInfo?->required_education }}
  • @endif @if ($ad?->hasOneAdsInfo?->employer_phone || $ad?->hasOneAdsInfo?->receive_is_email)
  • Recruiter want to received application : @if ($ad?->hasOneAdsInfo?->receive_is_email) By Email @endif @if ($ad?->hasOneAdsInfo?->receive_is_phone == '1') By Phone @endif
  • @endif @if ($ad?->hasOneAdsInfo?->salary_from || $ad?->hasOneAdsInfo?->salary_to)
  • Salary : {{ $setting->currency_symbol }} {{ $ad?->hasOneAdsInfo?->salary_from }} to {{ $ad?->hasOneAdsInfo?->salary_to }}
  • {{-- @else
  • Salary : Negotiable
  • --}} @endif @if ($ad?->hasOneAdsInfo?->deadline)
  • Application deadline : {{ date('d M Y', strtotime($ad?->hasOneAdsInfo?->deadline)) }}
  • @endif @if ($ad?->hasOneAdsInfo?->employer_name)
  • Recruiter Name : {{ $ad?->hasOneAdsInfo?->employer_name }}
  • @endif @if ($ad?->hasOneAdsInfo?->employer_email)
  • Recruiter Email : {{ $ad?->hasOneAdsInfo?->employer_email }}
  • @endif @if ($ad?->hasOneAdsInfo?->employer_phone)
  • Recruiter Phone : {{ $ad?->hasOneAdsInfo?->employer_phone }}
  • @endif @if ($ad?->hasOneAdsInfo?->website)
  • Recruiter Website : {{ $ad?->hasOneAdsInfo?->website }}
  • @endif @if ($ad?->hasOneAdsInfo?->employer_logo)
  • Recruiter Company Logo :
    {{ $ad?->hasOneAdsInfo?->employer_logo }}
  • @endif @if ($ad?->hasOneAdsInfo?->vehicle_body_type)
  • Body Type : {{ $ad?->hasOneAdsInfo?->vehicle_body_type }}
  • @endif @if ($ad?->hasOneAdsInfo?->vehicle_transmission)
  • Transmission : {{ $ad?->hasOneAdsInfo?->vehicle_transmission }}
  • @endif @if ($ad?->hasOneAdsInfo?->registration_year)
  • Year of Manufacture : {{ $ad?->hasOneAdsInfo?->vehicle_manufacture }}
  • @endif @if ($ad?->hasOneAdsInfo?->vehicle_fule_type) @php $vehicleFuelTypes = $ad->hasOneAdsInfo->vehicle_fule_type; // If the vehicle_fule_type is stored as a JSON string, decode it first if (is_string($vehicleFuelTypes)) { $vehicleFuelTypes = json_decode($vehicleFuelTypes, true); } // Convert the array to a comma-separated string $vehicleFuelTypesString = is_array($vehicleFuelTypes) ? implode(', ', $vehicleFuelTypes) : $vehicleFuelTypes; @endphp
  • Fule type : {{ $vehicleFuelTypesString }}
  • @endif @if ($ad?->hasOneAdsInfo?->vehicle_manufacture)
  • Registration year : {{ $ad?->hasOneAdsInfo?->registration_year }}
  • @endif @if ($ad?->hasOneAdsInfo?->vehicle_engine_capacity)
  • Vehicle Engine Capacity : {{ $ad?->hasOneAdsInfo?->vehicle_engine_capacity }} cc
  • @endif @if ($ad?->hasOneAdsInfo?->property_type)
  • Property Type : {{ $ad?->hasOneAdsInfo?->property_type }}
  • @endif @if ($ad?->hasOneAdsInfo?->property_type)
  • Address : {{ $ad?->address }}
  • @endif @if ($ad?->hasOneAdsInfo?->property_size)
  • Size : {{ $ad?->hasOneAdsInfo?->property_size }} {{ $ad?->hasOneAdsInfo?->property_unit }}
  • @endif @if ($ad?->hasOneAdsInfo?->textbook_type)
  • Type : {{ $ad?->hasOneAdsInfo?->textbook_type }}
  • @endif @if ($ad?->hasOneAdsInfo?->ads_type) @php if ( $ad->category_slug && $ad->category_slug == 'mens-fashion-grooming' ) { $cloth_types = config()->get('static_array.mens_clothing'); } else { $cloth_types = config()->get('static_array.womens_clothing'); } @endphp
  • Type : {{ $cloth_types[$ad?->hasOneAdsInfo?->ads_type] }}
  • @endif
@if ($ad?->hasManyFeatures?->count() > 0)

Features

@forelse($ad?->hasManyFeatures as $feature) {!! $feature->name !!} @empty {!! 'No Features' !!} @endforelse
@endif

Description

{!! nl2br($ad?->hasOneAdsInfo?->description) !!}

@if (empty($auth_report)) @endif
For sale by {{ $ad?->belongsToUser?->name }}
{{-- @if ($ad->category_id == '15') See Provider Profile @else @endif --}} See all ads from this member

Phone
Click to show phone number
@if ($ad?->phone) @endif @if ($ad?->phone2) @endif


@if ($ad->is_escrow==1) @guest @else @if(Auth::user()->id != $ad->user_id ) @endif @endguest @endif

Posting rules: Avoid Online Scams

Never share card details or OTPs, and always verify items in person before payment. Soco Build does not offer a delivery service. Stay vigilant!

See all posting rules
@if ($related_ads && count($related_ads) > 0) @endif @endsection @push('scripts') @endpush