@extends('layouts.app') @section('content')

{{trans('lang.notification')}}

@if(isset($_GET['selected_search']) && $_GET['selected_search'] != '') @else @endif
@if(count($notifications) > 0) @foreach($notifications as $notification) @endforeach @else @endif
{{trans('lang.title')}} {{trans('lang.message')}} {{trans('lang.created')}} {{trans('lang.actions')}}
{{ $notification->title}} {{ $notification->message}} {{ date('d F Y',strtotime($notification->created_at))}} {{ date('h:i A',strtotime($notification->updated_at))}}
{{trans("lang.no_result")}}
{{ $notifications->links('pagination.pagination') }}
@endsection @section('scripts') @endsection