@if(($inventory->offer_price > 0) && ($inventory->offer_end > \Carbon\Carbon::now()))
@php
$offer_price_help =
trans('help.offer_starting_time') . ': ' .
$inventory->offer_start->diffForHumans() . ' ' . trans('app.and') . ' ' .
trans('help.offer_ending_time') . ': ' .
$inventory->offer_end->diffForHumans();
@endphp
{{ $inventory->sale_price }}
{{ get_formated_currency($inventory->offer_price, 2) }}
@else
{{ get_formated_currency($inventory->sale_price, 2) }}
@endif