@component('frontend.mediknode.components.buttons', ['event' => $event])
@endcomponent
@php
$isEventRegistrationOpen = !$event->is_closed_registration;
$alreadyRegistered = $event->participant($event->id, $event->id);
$isAuthenticate = auth()->user();
$hasAbstracts = $event->has_abstracts;
$isEventAbstractOpen = !$event->is_closed_abstract_submission;
$hasProgram = $event->has_program;
$isInternalProgram = $event->is_internal_link_program;
$hasHebergement = $event->has_hebergement;
$canAddAnotherAbstract =
auth()->user() &&
auth()->user()->abstractsByEvents($event->id)->count() < $event->abstract_submission_limit;
$showParticipateButton = $isAuthenticate && $isEventRegistrationOpen && !$alreadyRegistered;
$showParticipateToLandingPageButton = !$isAuthenticate && $isEventRegistrationOpen;
$showAbstractButton =
$isAuthenticate &&
$isEventRegistrationOpen &&
$alreadyRegistered &&
$hasAbstracts &&
$isEventAbstractOpen &&
$canAddAnotherAbstract;
$showAbstractToParticipatePageButton =
$isAuthenticate &&
$isEventRegistrationOpen &&
!$alreadyRegistered &&
$hasAbstracts &&
$isEventAbstractOpen;
$showAbstractToLandingPageButton =
!$isAuthenticate && $isEventRegistrationOpen && $hasAbstracts && $isEventAbstractOpen;
$showInternalProgramButton = $hasProgram && $isInternalProgram;
$showExternalProgramButton = $hasProgram && !$isInternalProgram;
$showHebergementButton = $isEventRegistrationOpen && $hasHebergement;
@endphp
Programme :
1ère séance 9h00 - 11h00
09h00 - 9h15 : Mot d'ouverture
09h15 - 09h45 : HTA : physiopathologie et
cibles thérapeutiques
(Pr Karim Aouam)
09h45 - 10h15 : HTA : du diagnostic aux
complications
(Pr Khaldoun Ben Hamda)
10h15 - 10h45 : Nouveautés dans la
thérapeutique de l'HTA : Recommandations de la Société européenne de cardiologie ESC
2024
(Pr Faouzi Addad)
Discussion
11h00 - 11h30 : Pause-café
2ème séance 11h30 - 13h00
11h30 - 12h00 : Traitement de l'HTA : nouvelles
cibles et thérapeutiques innovante
(Pr Faiez Zannad)
12h00 - 12h30 : Symposium Phildelphia Pharma :
Le « One Pill » antihypertenseur : une thérapie sur mesure
(Pr Majed Hassine)
12h30 - 13h00 : Prise en charge de l'HTA : la
chronopharmacologie a-t-elle une place ?
(Pr Ag Haifa Ben Romdhane)
Discussion
13h00 - 14h30 : Déjeuner
3ème séance 14h30 - 16h00
14h30 - 15h00 : Inhibiteurs du système
rénine-angiotensine : Comment choisir entre IEC et ARA2 ?
(Pr Habib Skhiri)
15h00 - 15h30 : HTA et néphropathie : un cercle
vicieux
(Pr Ahmed Letaief)
15h30 - 16h00 : Inhibiteurs SGLT2 dans l'HTA :
une indication au-delà du diabète et de l'insuffisance cardiaque ?
(Pr Habib Gamra)
Discussion
Atelier : 16h00 - 17h00
Ordonnance à risque chez le sujet hypertendu
(Pr Nadia Ben Fredj+ Pr Ag Haifa Ben Romdhane)
@component('frontend.mediknode.components.buttons', ['event' => $event])
@endcomponent
@component('frontend.mediknode.components.scrolltotop')
@endcomponent
@endsection