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

Volumes & Issues Archive

Browse published articles grouped by volume and issue.

@forelse($volumes as $volume)

{{ $volume->title }}

@if($volume->year)

{{ $volume->year }}

@endif
@forelse($volume->issues as $i)

{{ $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 under this volume.
@endforelse
@empty
No volumes found.
@endforelse
@endsection