@include('livewire.ad-type.ad-details._parties.owner-view')
@if (Auth::id() == $this->ad->user_id && $this->ad->status->value == 'active')
@endif
@include('livewire.ad-type.ad-details._parties.related-ads')
@include('livewire.ad-type.ad-details._parties.ad-image')
@include('livewire.ad-type.ad-details._parties.vehicle-rental')
@endif
@if ($ad->condition && $ad->adType?->disable_condition == false)
@if (optional(current($customizationSettings->ad_detail_page))['enable_mobile_view_ad_action_in_below_ad'])
{{ __('messages.t_condition') }}:
{{ $ad->condition->name }}
@endif
@include('livewire.ad-type.ad-details._parties.dynamic-field')
@if (isEnablePointSystem() && in_array($ad->adType?->marketplace, [POINT_SYSTEM_MARKETPLACE]))
@else
@include('livewire.ad-type.ad-details._parties.online-shop')
@endif
@if (is_vehicle_rental_active() && $ad->start_date || ($vehicleRentalSettings->enable_whatsapp && $ad->user->phone_number))
@endif
@include('livewire.ad-type.ad-details._parties.external-ad-settings')
@if ($tags && count($tags) > 0)
@endif
@if ($ad->price >= max(auth()->user()->wallet?->points, 0))
{{ __('messages.t_buy_point') }}
{{ __('messages.t_buy_now') }}
@endif
{{ __('messages.t_you_do_not_have_enough') }}
@else
@if ($ad->start_date)
@endif
@endif
@if (!in_array($ad->adType?->marketplace, [ONLINE_SHOP_MARKETPLACE, POINT_SYSTEM_MARKETPLACE]))
{{ __('messages.t_tags') }}
@foreach ($tags as $tag)
{{ $tag['name'] }}
@endforeach