@extends('admin.layout') @php $selLang = \App\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
Shipping Charge
@if (!empty($langs)) @endif
@if (count($shippings) == 0)

No Shipping Charge

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