{{----------------------------------------------------- ** Numero.Post -----------------------------------------------------}} @extends('layouts.' . $theme, [ 'model' => $model, 'name' => 'paper-page', 'current' => 'issue' ]) @section('header')
{{ ucfirst($content->paper->issue->issue_type_prefix).$content->paper->issue->number }} / {{ html_entity_decode($content->paper->issue->issue_title) }}

{{ html_entity_decode($content->paper->title) }}

@if($content->paper->subtitle && ($content->paper->subtitle != 'Sous titre par défaut'))

{{ html_entity_decode($content->paper->subtitle) }}

@endif {{ implode(', ', array_column($content->paper->usersAsAuthors->toArray(), 'full_name')) }}
@if(file_exists('storage/numerev_Files/journal_'.$config->id.'/issue_'.$content->paper->issue->id.'/paper_'.$content->paper->id.'/images/paper_'.$content->paper->id.'.jpg' ))
{{ Str::words(html_entity_decode($content->paper->title), 10) }}
@endif
@endsection @section('contents')

Résumé

{!! html_entity_decode($content->paper->first_paper_abstract) !!}

Mots-clés

{{-- Limit 18 --}} @forelse ($content->paper->tags as $tag) @empty

Aucun mot-clé n'a été défini.

@endforelse

Plan de l'article

Télécharger l'article
@if(isset($content->paper->storage_path) && file_exists('storage/'.$content->paper->storage_path)) {!! html_entity_decode(file_get_contents('storage/'.$content->paper->storage_path)) !!} @endif

Auteurs

{{-- @for ($i = 0; $i < 3; $i++) --}} @foreach ($content->paper->usersAsAuthors as $author)

{{ $author->full_name }}

@if(isset($author['affiliations']) && count($author['affiliations']) > 0) @if(isset($author['affiliation_in_between']) && count($author['affiliation_in_between']) > 0) {!! $author['affiliation_in_between']['position_name'] != '' ? $author['affiliation_in_between']['position_name'].html_entity_decode("
") : '' !!} @if($author['affiliation_in_between']['main_structure'] != '' && $author['affiliation_in_between']['secondary_structure'] != '') {!! $author['affiliation_in_between']['main_structure'].html_entity_decode("
") !!} {!! $author['affiliation_in_between']['secondary_structure'].html_entity_decode("
") !!} @elseif($author['affiliation_in_between']['main_structure'] == '' && $author['affiliation_in_between']['secondary_structure'] != '' ) {!! $author['affiliation_in_between']['secondary_structure'].html_entity_decode("
") !!} @elseif($author['affiliation_in_between']['main_structure'] != '' && $author['affiliation_in_between']['secondary_structure'] == '' ) {!! $author['affiliation_in_between']['main_structure'].html_entity_decode("
") !!} @elseif($author['affiliation_in_between']['main_structure'] == '' && $author['affiliation_in_between']['secondary_structure'] == '') '' @endif {!! $author['affiliation_in_between']['organization_name'] != '' ? $author['affiliation_in_between']['organization_name'].html_entity_decode("
") : '' !!} @else @include('websites.includes.showAffiliationInList', ['data_aff'=>$author['affiliations']]) @endif @else

@endif
@if(is_numeric($author->id) && !is_null($author->email)) Contacter l'auteur @endif
@endforeach
@if (isset($content->paper->issue->reviewing_mode_id) && $content->paper->issue->reviewing_mode_id == 3 && isset($content->paper->usersAsReviewers) && count($content->paper->usersAsReviewers) > 0)

Article évalué par

@foreach ($content->paper->usersAsReviewers as $reviewer)

{{ $reviewer->full_name }}

@if(isset($reviewer['affiliations']) && count($reviewer['affiliations']) > 0) @if(isset($reviewer['affiliation_in_between']) && count($reviewer['affiliation_in_between']) > 0) {!! $reviewer['affiliation_in_between']['position_name'] != '' ? $reviewer['affiliation_in_between']['position_name'].html_entity_decode("
") : '' !!} @if($reviewer['affiliation_in_between']['main_structure'] != '' && $reviewer['affiliation_in_between']['secondary_structure'] != '') {!! $reviewer['affiliation_in_between']['main_structure'].html_entity_decode("
") !!} {!! $reviewer['affiliation_in_between']['secondary_structure'].html_entity_decode("
") !!} @elseif($reviewer['affiliation_in_between']['main_structure'] == '' && $reviewer['affiliation_in_between']['secondary_structure'] != '' ) {!! $reviewer['affiliation_in_between']['secondary_structure'].html_entity_decode("
") !!} @elseif($reviewer['affiliation_in_between']['main_structure'] != '' && $reviewer['affiliation_in_between']['secondary_structure'] == '' ) {!! $reviewer['affiliation_in_between']['main_structure'].html_entity_decode("
") !!} @elseif($reviewer['affiliation_in_between']['main_structure'] == '' && $reviewer['affiliation_in_between']['secondary_structure'] == '') '' @endif {!! $reviewer['affiliation_in_between']['organization_name'] != '' ? $reviewer['affiliation_in_between']['organization_name'].html_entity_decode("
") : '' !!} @else @include('websites.includes.showAffiliationInList', ['data_aff'=>$reviewer['affiliations']]) @endif @else

@endif
@endforeach
@endif @if ($content->paper->next_paper != [])

Continuer la lecture avec l'article suivant du numéro

{{ html_entity_decode($content->paper->next_paper->title) }}

{{ implode(', ', array_column($content->paper->next_paper->usersAsAuthors->toArray(), 'full_name')) }}

{!! Str::words(strip_tags(html_entity_decode($content->paper->first_nextPaper_abstract)), 80) !!}

Lire la suite
@endif

Du même auteur

Tous les articles
{{-- Limit 3 --}} @forelse ($content->paper->main_author_allPapers->userAsAuthor as $aut_paper)
@if(file_exists('storage/numerev_Files/journal_'.$config->id.'/issue_'.$aut_paper->issue_id.'/paper_'.$aut_paper->id.'/images/paper_'.$aut_paper->id.'.jpg' ))
{{ Str::words(html_entity_decode($content->paper->title), 10) }}
@endif
{{ ucfirst($aut_paper->issue_type_prefix) . $aut_paper->issue_number }} / {{ $aut_paper->formatted_publication_date }}

{{ html_entity_decode($aut_paper->title) }}

Lire la suite
@empty

Aucune autre publication à afficher.

@endforelse
@include('websites.includes.elements.email-modal') @push('metas') @include('websites.includes.article_metadata') @endpush @endsection