@extends('adminlte::page') @section('content') @section('content_header', __('admin.notifications'))
@if(count($errors) > 0)
@foreach($errors->all() as $error)

{{$error}}

@endforeach
@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@foreach($notifications_list as $row) @endforeach
ID @lang('admin.action') @lang('admin.date')
{{$row->id}} {{notification_types($row->action)}} - {{$row->details}} {{\Carbon\Carbon::parse($row->created_at)->translatedFormat('M d, Y H:i:s')}}
@if($notifications_list->isEmpty())
@lang('admin.no_record').
@endif
{{ $notifications_list->links()}} @endsection