@extends('layouts.app') @section('content')

مركز الإشعارات

تابع آخر التحديثات والمهام

@if(!empty($suggestions) && count($suggestions) > 0)
اقتراحات ذكية
@foreach($suggestions as $s)
{{ $s['text'] }}
تنفيذ
@endforeach
@endif
@forelse($items as $n) @php $icon = 'bi-bell'; $color = 'secondary'; if($n['type'] == 'success') { $icon = 'bi-check-circle-fill'; $color = 'success'; } if($n['type'] == 'info') { $icon = 'bi-info-circle-fill'; $color = 'info'; } if($n['type'] == 'warning') { $icon = 'bi-exclamation-triangle-fill'; $color = 'warning'; } if($n['type'] == 'danger') { $icon = 'bi-exclamation-octagon-fill'; $color = 'danger'; } @endphp

{{ $n['text'] }}

عرض التفاصيل
@empty
لا توجد إشعارات حالياً

حاول تغيير خيارات التصفية أو عد لاحقاً

@endforelse
@endsection