@extends('admin.layout') @php $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Postal Codes
@if (!empty($langs)) @endif
This page will be available if 'postal code' is enabled by Admin (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
{{$postcode->title}} {{$postcode->postcode}} {{$postcode->charge}} {{$postcode->serial_number}} Edit
@csrf
@endif
@endsection @section('scripts') @endsection