@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Notification'), ])

{{__('Notification')}}

@if (session('status')) @endif
@if(count($notification)==0)
{{__('No Notification found')}}
@else @foreach ($notification as $item) @if($item->user!=null)
{{$item->created_at->diffForHumans()}} {{$item->user->name.' '.$item->user->last_name}}

{{$item->message}}

@endif @endforeach @endif
@endsection