@extends('layouts.admin') @section('title', 'CBSE Corner') @section('content')

CBSE Corner

Manage CBSE certificates and documents

Add New Certificate
@if($admin->is_super_admin)
@endif
@if($cbseCorners->count() > 0)
@if($admin->is_super_admin) @endif @foreach($cbseCorners as $item) @if($admin->is_super_admin) @endif @endforeach
Title File SizeDomainStatus Order Created Actions
{{ $item->title }}
@if($item->description) {{ Str::limit($item->description, 50) }} @endif
@if($item->file_path)
{{ Str::limit($item->file_name, 20) }}
{{ strtoupper($item->file_extension ?? 'N/A') }}
@else No file @endif
{{ $item->formatted_file_size ?? 'N/A' }} {{ $item->domain->full_domain }} @if($item->is_active) Active @else Inactive @endif {{ $item->sort_order }} {{ $item->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $cbseCorners->links() }}
@else

No CBSE Certificates Found

Get started by adding your first certificate document.

Add First Certificate
@endif
@endsection