@extends('dashboard.layouts.app') @section('title', __('dashboard.Show Coupon')) @section('page_heading', __('dashboard.Show Coupon') . ': ' . $coupon->code) @section('breadcrumb')
{{ $coupon->code }}
{{ $coupon->user ? $coupon->user->name : __('dashboard.N/A') }}
{{ $coupon->discount_type == 'percentage' ? __('dashboard.Percentage') : __('dashboard.Fixed') }}
{{ $coupon->discount_value }}
{{ $coupon->commission_percentage ?? '0' }}%
{{ $coupon->max_uses_per_user ?? __('dashboard.Unlimited') }}
{{ $coupon->max_uses ?? __('dashboard.Unlimited') }}
{{ $coupon->start_date->format('Y-m-d H:i') }}
{{ $coupon->end_date->format('Y-m-d H:i') }}
{{ $coupon->is_active ? __('dashboard.Yes') : __('dashboard.No') }}
{{ $coupon->first_order_only ? __('dashboard.Yes') : __('dashboard.No') }}
{{ $coupon->description }}
{{ $coupon->applicability == 'all' ? __('dashboard.All') : __('dashboard.Specific') }}
{{ __('dashboard.All Payment Methods') }}
@endif