@if($lot->lot)
{{ __('app.lot') }}:
{{ $lot->lot }}
@endif
@if($lot->domain_id)
{{ __('app.auction_platform') }}:
{{ str_replace('_', '.', $lot->domain_id->name) }}
@if($lot->status and in_array($lot->status, [\App\Enums\PriceStatusEnum::sold, \App\Enums\PriceStatusEnum::sale, \App\Enums\PriceStatusEnum::not_on_sale, \App\Enums\PriceStatusEnum::on_approval]))
$lot->status === \App\Enums\PriceStatusEnum::sale,
'bg-gray-100 text-blue-800' => $lot->status !== \App\Enums\PriceStatusEnum::sale,
])
>{{ __('app.price_status.'.$lot->status->name) }}
@endif
@endif
@if($lot->sale_date)
{{ __('app.sale_date') }}:
{{ date_format($lot->sale_date, 'd.m.Y H:i') }}
@endif
@if($lot->estimate_repair_price)
{{ __('app.estimate_repair_price') }}:
{{ price_format($lot->estimate_repair_price, $lot->currency_id ?? \App\Services\Localisation\CurrencyService::getByCode('usd')) }}
@endif
@if($lot->actual_cash_value)
{{ __('app.actual_cash_value') }}:
{{ price_format($lot->actual_cash_value, $lot->currency_id ?? \App\Services\Localisation\CurrencyService::getByCode('usd')) }}
@endif
@if($lot->clean_wholesale_price)
{{ __('app.clean_wholesale_price') }}:
{{ price_format($lot->clean_wholesale_price, $lot->currency_id ?? \App\Services\Localisation\CurrencyService::getByCode('usd')) }}
@endif
@if($lot->pre_accident_price)
{{ __('app.pre_accident_price') }}:
{{ price_format($lot->pre_accident_price, $lot->currency_id ?? \App\Services\Localisation\CurrencyService::getByCode('usd')) }}
@endif
@if($lot->seller_id)
{{ __('app.seller') }}:
@if($lot->seller->logo)

@endif
@if($lot->seller->name)
{{ $lot->seller->name }}
@endif
@endif
@if($lot->location_address)
{{ __('app.location') }}:
{{ $lot->location_address }}
@endif