@extends('layouts.app') @section('title', 'Notification Templates') @section('title-flex')
 Filter:  @foreach($areas as $area) {{ $area->name }} @endforeach
@endsection @section('content')
@csrf
{{ $currentArea->name }}'s Notifications

These editors give you the possiblity to append your FIR-specific text to the templates available, for the e-mail notifications. The notification text must be in English.

@can('modifyAreaTemplate', [App\Notification::class, $currentArea]) @else @endcan
New Request Notification
@error('newrequestaddition') {{ $errors->first('newrequestaddition') }} @enderror
Preview

Hello (NAME),

We hereby confirm that we have received your training request for (RATINGS) in (FIR).

The request is now in queue. Expected waiting time: {{ Setting::get('trainingQueue') }}

We will periodically ask you to confirm your continued interest for your application with us, it's your responsibility to check your email for these requests and reply within the deadline.


For questions regarding your training, contact (area){{ '@'.Setting::get('linkDomain') }}

New Mentor Notification
@error('newmentoraddition') {{ $errors->first('newmentoraddition') }} @enderror
Preview

Hello (NAME),

It's your turn! You've been assigned a mentor for you training: (RATINGS) in (FIR).

Your mentor is: (MENTOR NAME). You can contact them through the message system at forums or search them up on Discord.

If you do not contact your mentor within 7 days, your training request will be closed and you lose the place in the queue.


For questions regarding your training, contact (area){{ '@'.Setting::get('linkDomain') }}

Pre-Training Notification
@error('pretrainingaddition') {{ $errors->first('pretrainingaddition') }} @enderror
Preview

Hello (NAME),

We would like to inform you that your training request for (RATINGS) in (FIR) has now been assigned to pre-training.


For questions regarding your training, contact (area){{ '@'.Setting::get('linkDomain') }}

@endsection @section('js') @vite(['resources/js/easymde.js', 'resources/sass/easymde.scss']) @endsection