@extends('web.base')
@section('content')
Unread Notiffications
@if(count($Unreadnotifications) > 0)
@foreach($Unreadnotifications as $vall)
- {{$vall->message}}
@endforeach
@else
@endif
Read Notifications
@if(count($Readnotifications) > 0)
@foreach($Readnotifications as $val)
- {{$val->message}}
@endforeach
@endif
@include('web.rightside')
@endsection