@extends('layouts.app') @section('title', 'Rates') @section('page-title', 'Rate Management') @section('content')

All Rates

Manage pricing for services and cargo types

New Rate
@foreach($rates as $rate) @endforeach
Customer Type Country Rate Type Base Rate Special Rate Cargo Type Valid From Status Actions
{{ $rate->customer ? $rate->customer->name : 'General' }} {{ $rate->type }} {{ $rate->country ?? '-' }} {{ $rate->rate_type }} {{ \App\Helpers\CurrencyHelper::format($rate->base_rate) }} {{ $rate->special_rate ? \App\Helpers\CurrencyHelper::format($rate->special_rate) : 'N/A' }} {{ $rate->cargo_type }} {{ $rate->valid_from->format('Y-m-d') }} {{ $rate->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
{{ $rates->links() }}
@endsection