@extends('layouts.admin') @section('title', $Title) @section('content')

{{ $Title }}

ID {{ $article->id }}
Prefix {{ $article->prefix }}
First Name {{ $article->first_name }}
Last Name {{ $article->last_name }}
Authors {{ $article->authors }}
University {{ $article->university }}
Department {{ $article->department }}
Country {{ $article->country }}
Address {{ $article->address }}
Email {{ $article->email }}
Phone {{ $article->phone }}
WhatsApp {{ $article->whatsapp }}
Article Type {{ $article->article_type }}
Journal {{ $article->journal }}
Title {{ $article->title }}
Abstract {{ $article->abstract }}
Full Text {!! nl2br(e($article->full_text)) !!}
PDF @if($article->pdf_path) View PDF @else No PDF uploaded @endif
DOI {{ $article->doi ?? '—' }}
Volume {{ $article->volume }}
Issue {{ $article->issue }}
Page No {{ $article->page_no }}
Received Date {{ $article->received_date }}
Publication Date {{ $article->publication_date }}
Citation {{ $article->citation }}
Copyright Text {{ $article->copyright_text }}
Status {{ ucfirst($article->status) }}
@endsection