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