@extends('admin.layouts.sellermastersoyuz') @section('title', 'Available Shipping Methods | ') @section('body') @component('seller.components.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('staticwords.AvailableShippingMethods') }} @endslot @slot('menu1') {{ __('staticwords.AvailableShippingMethods') }} @endslot @endcomponent
@foreach($shippings as $shipping) @if($shipping->name != 'UPS Shipping')
{{ $shipping['name'] }} :- @if($shipping['default_status'] == '1') {{__("staticwords.Default")}} @endif
@if($shipping->name != 'Free Shipping' && $shipping->name != 'Shipping Price')

{{ __("staticwords.Price") }}: {{ $shipping['price']}}

{{__("staticwords.Price Can be changed by admin") }}.

@if($shipping->name == 'Local Pickup')

{{ __("staticwords.LocalPickupText") }}.

@endif @if($shipping->name == 'Flat Rate')

{{ __("staticwords.FlatRateText") }}.

@endif
@endif @if($shipping->name == 'Free Shipping')

{{ __("staticwords.FreeShippingText") }}.

@endif @if($shipping->name == 'Shipping Price')
{{ __("staticwords.ShippingPriceText") }}.
@endif
@endif @endforeach
@endsection