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

All Shipping Rules

@foreach ($shippingRules as $shippingRule) @if ($shippingRule->type == 'minimum_order_amount') @else @endif @if ($shippingRule->is_active == 1) @else @endif @endforeach
No. Name Type Min Order Charge Status
{{ $loop->iteration }} {{ $shippingRule->name }}Minimum Order AmountFlat Amount{{ $shippingRule->minimum_amount }} {{ $shippingRule->charge }}ActiveInactive
@endsection