@extends('user.layouts.app') @section('content') @php $notification_data = @$data['notification_data']; @endphp

Your Notifications

@if(!empty($notification_data))
@foreach($notification_data as $notification)

{{$notification->notification_log_text}}

{{ dateformat($notification->created_at, "M d, Y h:i a") }}
@endforeach {!! $notification_data->links() !!}
@else

You have not any new notification

@endif
@endsection @section('scripts') @stop