@extends(ucfirst(getScope()).'.Layout.master') @section('content')

{{ _t('notification.notification') }}

{{--
@if(getScope() == 'admin') {{ _t('notification.settings') }} @endif
--}} @if($notifications->count())
@foreach($notifications as $notification)
@if(collect($notification->data)->get('icon')) @else @endif
{{ date('Y-m-d H:i:s',strtotime($notification->created_at)) }}
@endforeach
{!! $notifications->links() !!}
@else {{ _t('notification.no_notifications_found') }} @endif
@endsection