@lang('modules.menu.itemPrice'): {{ currency_format($selectedMenuItem->price ?? 0, restaurant()->currency_id) }}
@endif@lang('modules.menu.itemPrice'): {{ currency_format($selectedMenuItem->price ?? 0, restaurant()->currency_id) }} @if($discountType === 'percent' && $discountValue) @php $originalPrice = (float)($selectedMenuItem->price ?? 0); $discountAmount = ($originalPrice * (float)$discountValue) / 100; $discountedPrice = max(0, $originalPrice - $discountAmount); @endphp | @lang('modules.menu.discountedPrice'): {{ currency_format($discountedPrice, restaurant()->currency_id) }} @elseif($discountType === 'fixed' && $discountValue) @php $originalPrice = (float)($selectedMenuItem->price ?? 0); $discountedPrice = max(0, $originalPrice - (float)$discountValue); @endphp | @lang('modules.menu.discountedPrice'): {{ currency_format($discountedPrice, restaurant()->currency_id) }} @endif
@endif