@extends('admin.layout') @php $langs = \App\Models\Language::all(); $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Shipping Charges
@if (!empty($langs)) @endif
This page will be available if 'postal code' is disabled by Admin (Order Management > Settings). For demo version we are always showing this page.
If you dont want to show any shipping charge in checkout page, then don't add any shipping charge here
@if (count($shippings) == 0)

No Shipping Charge

@else
@foreach ($shippings as $key => $shipping) @endforeach
Title Text Charge ({{$be->base_currency_text}}) Actions
{{$shipping->title}} {{$shipping->text}} {{$shipping->charge}} Edit
@csrf
@endif
@endsection