is here php / NUXT developer to tell me how I to delete a field for webshop in Laravel , custom CMS i want to delete "delivery field price " for the order ...
do i need to delete and this or not ?
e("th",[t._v(t._s(t.$t("order.shipTo")))]),t._v(" "),e
Here is php blade that works fine (and dont show up)
<div style="width: 100%; clear: both; display: block; margin-top: 20px;">
<table class="border-tr td-right-align" style="margin-left: auto; width: 180px; max-width: 180px;">
<tr>
<td style="min-width: 110px">{{('lang.subtotal', [], $lang)}}</td>
<td style="min-width: 40px">{{ $setting->currency_icon }}{{ $order->calculated_price['subtotal'] }}</td>
</tr>
<tr>
<!-- <td>{{('lang.shipping_cost', [], $lang)}}</td>
@if((float) $order->calculated_price['shipping_price'] > 0)
<td>{{ $setting->currency_icon }}{{ $order->calculated_price['shipping_price'] }}</td>
@else -->
<td>{{__('lang.fre', [], $lang)}}</td>
<!-- @endif -->
</tr>
@if ((int) $order->calculated_price['bundle_offer'] > 0)
<tr>
<td>{{__('lang.bundle_offer', [], $lang)}}</td>
<td>{{ $setting->currency_icon }}{{ $order->calculated_price['bundle_offer'] }}</td>
</tr>
@endif