@extends('crm.master') @section('title', 'Custom Rates') @section('content')

Custom Rates

Manage duration-based pricing tiers

Add Custom Rate
@include('crm.components.alerts')
@forelse($rates as $key => $rate) @empty @endforelse
# Name Start Date End Date Applied Products Status Actions
{{ $rates->firstItem() + $key }} {{ $rate->name }} {{ $rate->start_date->format('d M Y') }} @if($rate->end_date) {{ $rate->end_date->format('d M Y') }} @else @endif @if($rate->apply_to_all_products) All Products @else {{ $rate->products_count }} Product{{ $rate->products_count !== 1 ? 's' : '' }} @endif @if($rate->status === 'active') Active @else Archived @endif
@csrf @method('PATCH')

No custom rates found

Add First Custom Rate
@if($rates->hasPages()) @endif
@endsection