@php $listing = $listing ?? null; @endphp @if ($listing) {{ html_decode($listing->title) }} {{ __('translate.Listing') }} {{ html_decode($listing->title) }} @php $listingDetailParts = array_filter([ $listing->category?->name ? html_decode($listing->category->name) : null, listing_card_location($listing) ?: null, ]); @endphp @if (! empty($listingDetailParts)) {{ implode(' · ', $listingDetailParts) }} @endif @if ($listing->offer_price) {{ currency($listing->offer_price) }} @if ($listing->regular_price) {{ currency($listing->regular_price) }} @endif @elseif ($listing->regular_price) {{ currency($listing->regular_price) }} @endif {{ __('translate.View listing') }} → @endif