@extends("admin/layouts.master") @section('title','Shipping Settings |') @section("body")
Default | Shipping Title | Price | Status | Action | |
---|---|---|---|---|---|
name == 'Local Pickup' || $shipping->name == 'UPS Shipping' ? "disabled" : ""}} type="radio" class="kk" id="{{$shipping->id}}" {{$shipping->default_status=='1'?'checked':''}} name="radio"> | {{$shipping->name}} | {{$shipping->price ?? '---'}} | @if($shipping->login=='1') {{'Yes'}} @else {{'No'}} @endif | name == 'Free Shipping' || $shipping->name == 'UPS Shipping' ? "disabled" : ""}} href=" {{url('admin/shipping/'.$shipping->id.'/edit')}} " class="btn btn-info btn-sm">Edit | @php $swt = App\ShippingWeight::first(); @endphp @if($swt->value == $shipping->name) Manage Weight @else {{ "--" }} @endif |