@extends('admin.layouts.layout') @section('title', 'Client Discounts Management') @section('content')
@if($permission['create'] ?? true) Add Discount @endif @if($permission['destroy'] ?? true) @endif
Client Discounts
Total: {{ $data->total() ?? $data->count() }} records
@if(session('tenant_id') == 0 || session('tenant_id') === null) @endif @forelse($data as $index => $clientDiscount) @if(session('tenant_id') == 0 || session('tenant_id') === null) @endif @empty @endforelse
Discount Title Discount Type DiscountTenantStatus Action
{{ $clientDiscount->title }} {{ $clientDiscount->discount_type }} {{ $clientDiscount->formatted_amount }} {{ $clientDiscount->tenant->name ?? 'N/A' }} {!! $clientDiscount->status_badge !!}
@if($permission['show'] ?? true) @endif @if($permission['edit'] ?? true) @endif @if($permission['destroy'] ?? true) @endif
No Client Discounts Found

Get started by creating your first client discount.

@if($permission['create'] ?? true) Add New Client Discount @endif
@if($data->hasPages()) @endif
@endsection @push('styles') @endpush @push('scripts') @endpush