@extends('layouts.app')
@section('content')
@php
$typeClass = match($notification->type_id) {
1, 2 => 'bg-type-booking',
3 => 'bg-type-chat',
4, 6 => 'bg-type-cancel',
5 => 'bg-type-system',
default => 'bg-type-default'
};
$typeIcon = match($notification->type_id) {
1, 2 => 'fa-calendar-check',
3 => 'fa-comments',
4, 6 => 'fa-ban',
5 => 'fa-cogs',
default => 'fa-bell'
};
$isRead = $notification->getRawOriginal('is_read') == 1;
@endphp