@extends('layouts.portal.app') @section('content')
@foreach($notifications as $notification) @endforeach
# Title Content Notification Date Action
{{ $loop->iteration }} {{ $notification->title }} {{ Str::limit($notification->content, 35) }} {{ \Carbon\Carbon::parse($notification->created_at)->format('d M Y') }}
{{ $notifications->render() }}
@endsection