@extends('backEnd.master') @push('css') @endpush @section('title') @lang('common.notifications') @endsection @section('mainContent')

@lang('common.notification_list')

@foreach ($notifications as $notification)
{{ formatedDate($notification->created_at) }}
{{ $notification->message }}
@if($notification->url) @lang('common.view_details') @endif
@endforeach
{{ $notifications->onEachSide(1)->links() }}
@endsection