@php $post ??= []; @endphp
{{-- Tab panes --}}
{{-- Location --}} {{-- Price / Salary --}}

{{ data_get($post, 'price_label') }} {!! data_get($post, 'price_formatted') !!} @if (data_get($post, 'negotiable') == 1) {{ t('negotiable') }} @endif


{{-- Description --}}
{!! data_get($post, 'description') !!}
{{-- Custom Fields --}} @includeFirst([config('larapen.core.customizedViewPath') . 'post.show.inc.details.fields-values', 'post.show.inc.details.fields-values']) {{-- Tags --}} @if (!empty(data_get($post, 'tags')))

{{ t('Tags') }}:

@foreach(data_get($post, 'tags') as $iTag) {{ $iTag }} @endforeach
@endif {{-- Actions --}} @if (!auth()->check() || (auth()->check() && auth()->id() != data_get($post, 'user_id')))
@if (auth()->check()) @if (auth()->user()->id == data_get($post, 'user_id')) @else {!! genEmailContactBtn($post, false, true) !!} @endif @else {!! genEmailContactBtn($post, false, true) !!} @endif
@if (isVerifiedPost($post)) @endif
@endif
@if (config('plugins.reviews.installed')) @if (view()->exists('reviews::comments')) @include('reviews::comments') @endif @endif