@extends('backend.layouts.master') @section('title') Liste des abstracts @endsection @section('css') @endsection @section('body') @endsection @section('content')
Liste des abstracts
@can('abstracts_generate')
@endcan
@if ($event->has_abstracts)
Abstracts reçus : {{ $abstractStatistiques['total_abstracts'] }}
Auteurs : {{ $abstractStatistiques['first_author_count'] }}
Abstracts max limit : {{ $event->abstract_submission_limit }}
Abstracts approuvés : {{ $abstractStatistiques['abstracts_approuved'] ?? 0 }}
Abstracts rejetés : {{ $abstractStatistiques['abstracts_rejected'] ?? 0 }}
Abstracts en attente : {{ $abstractStatistiques['total_abstracts'] - ($abstractStatistiques['abstracts_approuved'] + $abstractStatistiques['abstracts_rejected']) }}
ePosters : {{ $abstractStatistiques['eposter_count'] ?? 0 }}
Communication Orale : {{ $abstractStatistiques['communication_count'] ?? 0 }}
{{--
@role(['Super Admin', 'Agency Manager']) @if ($abstractExceedLimit->count() > 0)
Auteurs ayant plus que 5 abstracts :
    @foreach ($abstractExceedLimit as $item)
  • {{ $item->first_author }} {{ $item->abstract_count }}
  • @endforeach
@endif @endrole

Abstracts Médicale : {{ $abstractStatistiques['medical_count'] }}
Abstracts Chirurgicale : {{ $abstractStatistiques['surgical_count'] }}

--}}
@endif

@foreach ($abstracts as $abstract) @endforeach
Statut Type Titre Premier auteur Reviewer
@if ($abstract->review == 'Approuver') {{ $abstract->review }} @elseif($abstract->review == 'Rejeter') {{ $abstract->review }} @else En attente @endif {{ $abstract->type }}
{{ $abstract->title }}
{{ $abstract->first_author }} {{ $abstract->reviewer_first_name . ' ' . $abstract->reviewer_last_name }}
{{-- --}} @can('abstracts_edit') @endcan @if (auth()->user()->can('abstracts_review')) @endif @can('abstracts_delete') @endcan
@endsection @section('scripts') @endsection