@extends('layouts.admin') @section('title', 'Pricing Management') @section('content')

Pricing & Rate Cards

Manage your standard and custom pricing tiers.

@forelse ($rates ?? [] as $rate) @empty @endforelse
Rate Card Name Base Rate (PKR) Weight Tier Zone Status Actions
{{ $rate->name }}
{{ number_format($rate->base_rate, 2) }}
{{ $rate->weight_tier }} kg
{{ $rate->zone->name }}
@if($rate->is_active) Active @else Inactive @endif Edit Delete
No pricing rates found.
@endsection