@extends('admin.layouts.app') @section('content')

Shipping Management

@include('admin.message')

Cancel
@if (count($shippingCharges)>0) @foreach ($shippingCharges as $shippingCharge) @endforeach @endif
ID Country Shipping Action
{{ $shippingCharge->id }} {{ ($shippingCharge->country_id == 'rest_of_world') ? 'Rest of the World' : $shippingCharge->name }} {{ $shippingCharge->amount }} Edit Delete
@endsection @section('customJs') @endsection