@extends('site.layout.master') @section('content')
الإشعارات
@if(count($notifications) > 0 ) @else

لا يوجد اشعارات

@endif @foreach($notifications as $notification)

{{$notification->title}}

{{$notification->description}}

{{\Carbon\Carbon::parse($notification->created_at)->diffForHumans()}}
@endforeach
@endsection