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

Notification

@forelse($notification as $key=>$user) @php if($user->read_status == 1) { $readstatus = 'Read'; $color = 'success'; } else{ $readstatus = 'Unread'; $color = 'danger'; } @endphp @php if($user->status == 1) { $status = 'Active'; $color = 'success'; } else{ $status = 'InActive'; $color = 'danger'; } @endphp @empty @endforelse
# Title Read Status Status
{{ $key+1 }} {{ $user->title }}{{ $readstatus }}
{{ $status }}
@endsection