@extends('layouts.admin') @section('title', 'Discount Management') @section('content')
Manage discounts and promotions
| Name | Code | Type | Amount | Applies To | Status | Effective | Actions |
|---|---|---|---|---|---|---|---|
| {{ $discount->name }} | {{ $discount->code }} | {{ ucfirst($discount->type) }} | {{ $discount->type==='percentage' ? $discount->amount.'%' : number_format($discount->amount,2).' '.$discount->currency }} | {{ ucfirst($discount->applies_to) }} @if($discount->target_code) ({{ $discount->target_code }})@endif | {{ ucfirst($discount->status) }} | {{ optional($discount->effective_from)->format('Y-m-d') }} — {{ optional($discount->effective_to)->format('Y-m-d') }} | Edit |
| No discounts found. | |||||||