@if (($slug != 'buy'))
@if (auth()->check())
@else
@endif
@else
@endif
{{$model->getTranslatedTitle()}}
{{-- {{!empty($model->address)?$model->address:'Los Angels, CA .'}}
{{$model->city->name}} --}}
{{$model->getTranslatedAddress()}}
@php
$verifyCount = $model->getCreatedBy->getVerifyCount()->count();
@endphp
@if($verifyCount > '0')
@endif
{{$model->created_at->diffForHumans()}}
{{$model->price_with_currency}}
{{__('words.(Fixed Price)')}}
@php
$param = [
'end_point' => 'convert',
'access_key' => env('COINLAYER_KEY'),
'input' => [
'from' => $model->getCurrency->symbol,
'to' => 'BTC',
'amount' => $model->price
]
];
@endphp
{{ getConvertedAmount($param)}}
@if($model->is_accept_fiat == \App\Models\Advertisment::IS_ACCEPT_FIAT_TRUE)
{{__('words.Fiat Money')}}
@endif
@php
$chatText = ($slug != 'buy') ? 'Chat with seller' : 'Chat with buyer'
@endphp