@extends('admin.layout') @section('content')
| Title | Author | Research Field | Judge | Status | Submitted | Actions |
|---|---|---|---|---|---|---|
|
{{ Str::limit($paper->title, 50) }}
|
{{ $paper->user->first_name }} {{ $paper->user->last_name }} | {{ $paper->research_field ?? 'N/A' }} | {{ $paper->judge->first_name ?? 'N/A' }} {{ $paper->judge->last_name ?? '' }} | {{ ucfirst(str_replace('_', ' ', $paper->status)) }} | {{ $paper->submitted_at->format('M j, Y') }} | |
| No research papers found. | ||||||
{{ $papers->total() }}
{{ $papers->where('status', 'published')->count() }}
{{ $papers->where('status', 'under_review')->count() }}
{{ $papers->where('is_featured', true)->count() }}