#php / NUXT developer to tell me how I to delete a field for webshop in Laravel , custom CM

5 messages · Page 1 of 1 (latest)

void patrol
#

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
void patrol
#

no?

prime harness
#

I swear, you guys take jobs from upwork you dont know how to do and you come here asking for a solution and whats worse you dont even format the code

If you want to delete the column which I dont suggest you can create a migration for dropping a column

And to delete a field get the id of the row, access the field via orm and set it to null

void patrol
#

We are changed the code and make the build with npm start build , later that dist folder extracted into the hosting and the whole website now dont works, it gives that error

in the console writes this , also see the picture of the error that shows in the homepage ..

Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://127.0.0.1:8000/api/v1/common. (Reason: CORS request did not succeed). Status code: (null).

Cookie warnings 9
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://127.0.0.1:8000/api/v1/home. (Reason: CORS request did not succeed). Status code: (null).