@extends('panel.layouts.layout') @section('content')
@lang('home.notifications_list')
@lang('home.home') / @lang('home.notifications') / @lang('home.notifications_list')
@if(Session('success'))
× @lang('home.success')! {{session('success')}}.
@endif
@csrf
@foreach($notifications as $notification) @endforeach
# @lang('home.title') @lang('home.sender') @lang('home.message') @lang('home.receiver') @lang('home.delete')
{{ @$notification->id }} {{ $notification->title }} {{@$notification->user->fname.' '.@$notification->user->lname}} {{ $notification->msg }} @include('panel.notifications.receiver_model') @include('panel.notifications.delete_from_list')
@stop @section('jsCode') @stop