@auth
@if ($seller->id != auth()->user()->id)
@endif
@endauth
@guest
@endguest
@endif
@if ($slug != 'sale')
@auth
@if ($seller->id != auth()->user()->id)
@endif
@endauth
@guest
@endguest
@endif
@php
$verifyCount = $advertisment->getCreatedBy->getVerifyCount()->count();
@endphp
@if($verifyCount > '0')
@endif
{{$advertisment->created_at->diffForHumans()}}
{{$advertisment->price_with_currency}}
{{__('words.(Fixed Price)')}}
@php
$param = [
'end_point' => 'convert',
'access_key' => 'd55e42b29f87ad99c85e67af07cbbe99',
'input' => [
'from' => $advertisment->getCurrency->symbol,
'to' => 'BTC',
'amount' => $advertisment->price
]
];
@endphp
{{ getConvertedAmount($param)}}
@if($advertisment->is_accept_fiat == \App\Models\Advertisment::IS_ACCEPT_FIAT_TRUE)
{{__('detail.Fiat Money')}}
@endif
@guest
@endguest
@auth
@if ($seller->id != auth()->user()->id)
@if($slug=='sale')
{{__('words.Chat with seller')}}
@else
{{__('words.Chat with buyer')}}
@endif
@endif
@endauth