@php($hidden = Enum::match('SenderType.Specified', old('sender_type', $order->sender_type))? '': 'hidden')
{{--
--}}
| 小計 | @php($value = (old('subtotal_standard', $order->subtotal_standard) ?? 0) + (old('subtotal_reduced', $order->subtotal_reduced) ?? 0) + (old('subtotal_exempt', $order->subtotal_exempt) ?? 0)) {{num_format($value)}} |
|---|---|
| 消費税(8%) | @php($value = old('tax_amount_reduced', $order->tax_amount_reduced) ?? 0) {{num_format($value)}} |
| 消費税(10%) | @php($value = old('tax_amount_standard', $order->tax_amount_standard) ?? 0) {{num_format($value)}} |
| 合計 | @php($value = (old('total_standard', $order->total_standard) ?? 0) + (old('total_reduced', $order->total_reduced) ?? 0) + (old('total_exempt', $order->total_exempt) ?? 0)) {{num_format($value)}} |