| |
Voici une notification provenant de Gestio-Pro RH pour l'un de vos rappels:
Employé(e): {{ $rappel->employee_name }}
Description: {{ $rappel->description }}
Date d'échéance: {{ $rappel->date->format('Y-m-d') }}
Rappel {{ $rappel->number_days_before_notification }} jours avant ( {{ $rappel->notification_date->format('Y-m-d') }} )
Note:
@php
$note = $rappel->note;
// replace br and p tags with new line
$note = preg_replace('/ ]*>/i', "\n", $note);
$note = preg_replace('/]*>/i', "\n", $note);
$note = preg_replace('/<\/p>/i', "\n", $note);
// remove all remaining tags
$note = strip_tags($note);
@endphp
{{ $note }}
|
|
|
|