@extends('admin.layouts.master-soyuz') @section('title',__('Shipping Charge Settings')) @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Shipping Charge') }} @endslot @slot('menu1') {{ __("Shipping Charge") }} @endslot​ ​@slot('button')
{{__("Add Shipping Charge")}}
@endslot @endcomponent
{{ __('Shipping Charge') }}


{{ __("Toggle to allow Gloabl Shipping Charges.") }}
@if(isset($records[0]->global_price)) @endif

@foreach($records as $record) @endforeach
{{ __('Id') }} {{ __('city Name') }} {{ __('Price') }} {{ __('Global Price') }} {{ __('Price Type') }} {{ __('Action') }}
{{$record->id}} {{$record->city_id}} {{$record->custom_price}} {{$record->global_price }} {{$record->Type_of_charge == 'global' ? "Global":"Custom"}}
@endsection