@if (session('success'))
{{ session('success') }}
@endif
Sr.No |
Client Name |
Address |
Certificate No |
Total |
Status |
Actions |
@forelse($certifications as $index => $certification)
{{ $index + 1 }} |
{{ Str::limit($certification->client_name, 50) }} |
{{ Str::limit($certification->address, 40) ?: 'N/A' }} |
{{ Str::limit($certification->certificate_no, 40) ?: 'N/A' }} |
{{ $certification->total }} |
@if ($certification->is_active)
Active
@else
Inactive
@endif
|
|
@empty
No AYUSH certifications found. |
@endforelse