@extends('web.layouts.container') @section('content')

{{__('members.notifications')}}

@if(count($notifications)) @endif
@if(count($notifications)) @foreach($notifications as $notification)
{{--
--}} {{--
--}} {{--
--}}
{{wordLimit($notification->title, 5)}}
{{date('d M Y/ h:i A', strtotime($notification->created_at))}}
{{$notification->message}}
@endforeach @else
{{__('usersNotifications.no_notifications')}}
@endif
@endsection @section('inner_js') @endsection