@extends('layouts.app')
@section('title', $title = $notification->name)
@section('content')
@include('shared.button', ['type' => 'edit', 'url' => route('notifications.edit', $notification)])
@include('shared.button', ['type' => 'delete', 'url' => route('notifications.destroy', $notification)])
-
{{ __('forms.user') }} : {{ $notification->User->name }}
-
{{ __('forms.name') }} : {{ $notification->name }}
-
{{ __('forms.description') }} : {{ $notification->description }}
-
{{ __('forms.type') }} : {{ $notification->type }}
-
{{ __('forms.title') }} : {{ $notification->title }}
-
{{ __('forms.body') }} : {{ $notification->body }}
-
{{ __('forms.CreatedAt') . ' : ' . CheckDateTime($notification->created_at, 'show', 'FullDateTime') }}
-
{{ __('forms.UpdatedAt') . ' : ' . CheckDateTime($notification->updated_at, 'show', 'FullDateTime') }}
{{ __('forms.users') }}
@foreach($notification->Users as $key => $user)
-
{{ $key + 1 . ' - ' . $user->name }}
@endforeach
@endsection