@extends('layouts.admin')
@section('content')
Admin Module Manage news & events records from the database.News & Events
| Title | Type | Event Date | Status | Actions |
|---|---|---|---|---|
| @php $valueEn = $record->title_en ?: '-'; $valueAs = $record->title_as ?: $valueEn; @endphp {{ str($valueEn)->limit(80) }} | {{ str($record->type ?? '-')->limit(80) }} | {{ $record->event_date?->format('d M Y') ?? '-' }} | @php $statusEn = str($record->status ?? '-')->replace('_', ' ')->title()->toString(); $statusAs = $selectOptionLabelsAs[$record->status ?? ''] ?? $statusEn; @endphp {{ $statusEn }} | |
| No news & events found. | ||||