@extends('layouts.admin') @section('page-title', 'Customer Pricing') @section('content')

Customer Pricing

Set a unique selling price per customer, per product. Products without an override use the default selling price.

@if ($selectedCustomerId)
Export CSV
@csrf
@forelse ($grid as $row) @empty @endforelse
ProductSKUDefault PriceCustomer PriceDiscount %Effective Price
{{ $row['product']->name }} {{ $row['product']->sku }} ₹{{ number_format($row['product']->default_selling_price, 2) }}
@csrf
₹{{ number_format($row['effective_price'], 2) }} @if ($row['override'])
@csrf @method('DELETE')
@endif
No products in catalog yet
@endif @endsection