@php $notify_settings = App\Models\NotificationSetting::get(); @endphp
@foreach ($notify_settings as $key => $notification_row) @endforeach
# {{ get_phrase('Email type') }} {{ get_phrase('Email subject') }} {{ get_phrase('Email template') }} {{ get_phrase('Action') }}
{{ ++$key }}
{{ $notification_row->setting_title }}

{{ $notification_row->setting_sub_title }}

@foreach (json_decode($notification_row->subject, true) as $user_type => $subject)

{{ get_phrase('To ' . $user_type) }}: {{ $subject }}

@endforeach

@foreach (json_decode($notification_row->template, true) as $user_type => $template)

{{ get_phrase('To ' . $user_type) }}: {!! removeScripts($template) !!}

@endforeach