Sommaire du numéro
@foreach ($content->last_issue->hierarchy as $node)
@if ($node->entity_type == 'App\Models\IssueSection')
{{ html_entity_decode($node->issueSectionObj['title']) }}
@elseif($node->entity_type == 'App\Models\Paper')
{{ html_entity_decode($node->paperObj['title']) }}
{{ $node->paperObj['authors'] }}
@if(isset($node->paperObj['paper_abstracts'][0]['storage_path']) && file_exists('storage/'.$node->paperObj['paper_abstracts'][0]['storage_path']))
{!! Str::words(strip_tags(html_entity_decode(file_get_contents(asset('storage/'.$node->paperObj['paper_abstracts'][0]['storage_path'])))), 80) !!}
@endif
Lire la suite
@endif
@endforeach