@extends('layouts.app') @section('content')

{{ $listing->title }}

@if($listing->price) {{ number_format($listing->price, 0) }} {{ $listing->currency }} @else Free @endif

{{ $listing->city }}, {{ $listing->country }}

Posted {{ $listing->created_at->diffForHumans() }}

Description

{{ $listing->description }}

Contact Seller

@if($listing->contact_phone)

Phone: {{ $listing->contact_phone }}

@endif @if($listing->contact_email)

Email: {{ $listing->contact_email }}

@endif
@endsection