@extends('dashboard.layouts.app') @section('title', __('dashboard.Discount Details') . ' - ' . $discount->id) @section('page_heading', __('dashboard.Discount Details') . ' - ' . $discount->id) @section('breadcrumb')
{{ $discount->pricingType->name ?? 'N/A' }}
{{ $discount->quantity }}
{{ $discount->total_price }}
{{ $discount->start_date->format('Y-m-d H:i') }}
{{ $discount->end_date->format('Y-m-d H:i') }}
{{ $discount->is_active ? 'Yes' : 'No' }}
{{ $discount->discount_start_date?->format('Y-m-d H:i') ?? 'N/A' }}
{{ $discount->discount_end_date?->format('Y-m-d H:i') ?? 'N/A' }}
{{ ucfirst($discount->discount_type ?? 'N/A') }}
{{ $discount->discount_amount ?? 'N/A' }}
{{ $discount->discount_title[$locale] ?? 'N/A' }}
{{ $discount->discount_description[$locale] ?? 'N/A' }}
{{ __('dashboard.No discount details available') }}
@endif