@extends('public.layout.app') @section('title', __('front.research_papers')) @section('body')

{{ __('front.research_papers_theses') }}

{{ __('front.reset') }}
@foreach($papers as $p)
{{ $p->title }}

{{ $p->author }} ({{ $p->year }})
{{ str_replace('_', ' ', ucfirst($p->type)) }}

{{ __('front.download_pdf') }}
@endforeach
{{ $papers->links('pagination::bootstrap-4') }}
@endsection