@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Custom Notification List')) @section('header-title')

{{ __('Custom Notification List') }}

@endsection @section('content')
@csrf

{{ __('Send Notification') }}

  • {{ __('You can use') }} {user_name} {{ __('to include the users name. This is optional but helpful for personalization') }}.
@error('title')
{{ $message }}
@enderror
@error('message')
{{ $message }}
@enderror
@error('users')
{{ $message }}
@enderror
@forelse ($users as $user) @empty @endforelse
{{ __('Thumbnail') }} {{ __('Name') }} {{ __('Email Address') }} {{ __('Phone Number') }}
profile picture {{ $user->name }} {{ $user->email }} {{ $user->phone }}
{{ __('No User Found') }}
@endsection @push('scripts') @if (session('notification_not_enabled')) @endif @if (session('confirmation_not_enabled')) @endif @endpush