@extends('layouts.panel') @section('content')

Archive

Published articles grouped by volume and issue.

@forelse($issues as $i)

{{ $i->volume->title ?? 'Volume' }} - {{ $i->title }}

@if($i->published_on) Published: {{ \Illuminate\Support\Carbon::parse($i->published_on)->format('M d, Y') }} @endif

@forelse($i->articles as $a)
{{ $a->title }}

{{ $a->author->display_name ?? 'NEROSA Editorial' }}

@empty

No published articles in this issue yet.

@endforelse
@empty
No issues found.
@endforelse
@endsection