@extends('admin.layouts.sellermaster') @section('title','Available Shipping Methods') @section('body')
Available Shipping Methods
@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