@php use App\Models\User\Language; @endphp @extends('user.layout') @php $setLang = Language::where('code', request()->input('language'))->first(); @endphp @if (!empty($setLang) && $setLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Shipping Charges
@if (!empty($userLangs)) @endif
If you don't 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 ({{ $userBe->base_currency_text }}) Actions
{{ convertUtf8(strlen($shipping->title)) > 60 ? convertUtf8(substr($shipping->title, 0, 60)) . '...' : convertUtf8($shipping->title) }} {{ convertUtf8(strlen($shipping->text)) > 60 ? convertUtf8(substr($shipping->text, 0, 60)) . '...' : convertUtf8($shipping->text) }} {{ $userBe->base_currency_symbol_position == 'left' ? $userBe->base_currency_symbol : '' }} {{ $shipping->charge }} {{ $userBe->base_currency_symbol_position == 'right' ? $userBe->base_currency_symbol : '' }}
@csrf
@endif
@endsection