{{----------------------------------------------------- ** Page.Search -----------------------------------------------------}} @extends('layouts.' . $theme, [ 'model' => $model, 'name' => 'page-tag', 'current' => '' ]) @section('header')

Résultats pour le mot-clef : "{{ $content->search }}"

@endsection @section('contents')

Publications liées à "{{ $content->search }}"

@forelse ($content->tag->papers as $paper)

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

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

@if(isset($paper->storage_path) && file_exists('storage/'.$paper->storage_path)) {!! Str::words(strip_tags(html_entity_decode(file_get_contents(asset('storage/'.$paper->storage_path)))), 40) !!} @endif

Lire la suite
@empty

Aucune publication n'est associée au mot-clef recherché.

@endforelse

Auteurs

@forelse ($content->tag->users as $user)

{{ $user->firstname . ' ' . $user->lastname }}

@include('websites.includes.showAffiliationInList', ['data_aff'=>$user->affiliations->toArray()])
@if(strlen($user->email)) Contacter l'auteur @endif
@empty

Aucun auteur n'est associé au mot-clef recherché.

@endforelse
@include('websites.includes.elements.email-modal') @endsection