@extends('layouts.app') @section('content')
Notification Setting Details
ID:
{{ $notificationSetting->id }}
Feature:
{{ $notificationSetting->feature }}
Events:
    @foreach($notificationSetting->events as $event)
  • {{ $event }}
  • @endforeach
Roles:
    @foreach($notificationSetting->roles as $role)
  • {{ $role }}
  • @endforeach
Message:
{{ $notificationSetting->message }}
Created At:
{{ $notificationSetting->created_at->format('Y-m-d H:i:s') }}
Updated At:
{{ $notificationSetting->updated_at->format('Y-m-d H:i:s') }}
@endsection