@php use App\Models\User\Language; use Illuminate\Support\Facades\Auth; @endphp @extends('user.layout') @php $setLang = Language::where([['code', request()->input('language')], ['user_id', Auth::guard('web')->user()->id]])->first(); @endphp @if (!empty($setLang) && $setLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Postal Codes
@if (!empty($userLangs)) @endif
This page will be available if 'postal code' is enabled by {{ Auth::guard('web')->user()->username }} (Order Management > Settings) . For demo version we are always showing this page.
@if (count($postcodes) == 0)

NO POSTAL CODE FOUND

@else
@foreach ($postcodes as $key => $postcode) @endforeach
Title Post Code Charge Serial Number Actions
{{ convertUtf8(strlen($postcode->title)) > 60 ? convertUtf8(substr($postcode->title, 0, 60)) . '...' : convertUtf8($postcode->title) }} {{ $postcode->postcode }} {{ $userBe->base_currency_symbol_position == 'left' ? $userBe->base_currency_symbol : '' }} {{ $postcode->charge }} {{ $userBe->base_currency_symbol_position == 'right' ? $userBe->base_currency_symbol : '' }} {{ $postcode->serial_number }}
@csrf
@endif
@endsection