@extends('layouts.app') @section('title') {{ $ad->title }} - View Ad Details | {{ config('app.name') }} @endsection @section('meta') @if ($ad->images->count() > 0) @endif @endsection @section('styles') @endsection @section('content')

{{ $ad->title }}

{{ config('app.currency_symbol') }}{{ number_format($ad->price, 2) }}
{{ $ad->city ?? 'Location not specified' }}, {{ $ad->country }}
Posted: {{ $ad->created_at->diffForHumans() }}
{{ $ad->views ?? 0 }} views

Description

{!! nl2br(e($ad->description)) !!}
@if ($ad->tags->count() > 0)

Tags:

@foreach ($ad->tags as $tag) {{ $tag->name }} @endforeach
@endif

Specifications

Brand {{ $ad->brand->name ?? 'Not specified' }}
Condition {{ $ad->condition ?? 'Not specified' }}
Category {{ $ad->category->name ?? 'Not specified' }}
@if ($ad->model)
Model {{ $ad->model }}
@endif
{{ substr($ad->seller_name ?? 'S', 0, 1) }}

{{ $ad->seller_name ?? 'Seller' }}

{{ $ad->state ?? '' }}, {{ $ad->country }}

{{ $sameSellerAds->count() }}
Total Ads
{{--
{{ number_format($ad->user->averageRating() ?? 4.5, 1) }}
Rating
--}}
{{ $ad->user->created_at->diffForHumans() ?? '1 yr' }}
Member Since

Contact Information

Safety Tips

  • Meet in a public place
  • Check the item before buying
  • Never pay in advance
  • Trust your instincts
@if ($sameSellerAds->count())
More ads from this seller
@endif @if ($recommendedAds->count())
Recommended for you
@endif
@if (session('success')) @endif @endsection @section('scripts') @endsection