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

Price: {{ $shipping['price']}}

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

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

{{ __("Localpick up will choosen by user at time of order review.") }}

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

{{ __('Any item shipped with this method means global shipping charge will apply on all products.') }}

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

{{__("Free Shipping not need any price changes when item is shipped with this method there is no shipping charge will apply.")}}

@endif @if($shipping->name == 'Shipping Price')
{{__("Shipping Price mean Shipping price by weight")}}
@endif
@endif @endforeach
@endsection