@extends('user.layout.base') @section('title', 'Notifications ') @section('content')

notifications

@foreach($notifications as $index => $notify)
@if($notify->image) image @else N/A @endif
{{ date('F d, Y, h:i A', strtotime($notify->created_at)) }}

{{ str_limit($notify->description, $limit = 100, $end = '...') }}

@endforeach
@endsection @section('scripts') @endsection