@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@forelse ($data['notifications'] as $key=>$notification) @empty @endforelse
{{ _trans('common.SL') }} {{ _trans('common.Message') }} {{ _trans('common.Employee') }} {{ _trans('common.Created at') }}
{{ $key+1 }}
{{ @$notification->title }}
{!! @$notification->description !!}
{{ @$notification->user->name }}
@if(@$notification->user->designation->title != "" && @$notification->user->department->title != "") [{{ @$notification->user->designation->title }} , {{ @$notification->user->department->title }} ] @endif
{{ @$notification->created_at->diffForHumans() }}
@endsection @section('script') @include('backend.partials.table_js') @endsection