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

{{ __('Notification') }}

{{ __('Mark All As Read') }}

@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 }} @if ($item->status == 1) {{ __('Unread') }} @endif

{{ $item->message }}

@endif @endforeach @endif
@endsection