@extends('layouts.app') @section('title') {{ __('home.notification') }} @endsection @section('content')
@if ($user->image) {{ $user->name() }} @else avatar @endif

{{ $user->name() }}

{{ $user->email }}
@include('userboard.partials.sideUserDashboard')
@lang('home.notification')
@foreach ($user->notifications as $notify) @endforeach
@lang('home.title') @lang('home.date') @lang('home.message')

{{$notify->notification_mesasge->title}}

{{ \Carbon\Carbon::parse($notify->created_at)->format('F j, Y') }} {{$notify->notification_mesasge->text}}
@endsection