@extends('admin.layouts.app') @php $email_notification = @$email_notification; @endphp @section('content')

Notification Type Manager

Email Notification List

List of Email Notification

{{ csrf_field() }}
Reset
@include('admin.includes.status')
@if(!empty($email_notification)) @foreach($email_notification as $value) @endforeach @endif
Sr. No. Subject Text Mail Send To Send To Admin Email Mail Send Cc Status Action
{{ $value->id }} {{ $value->subject }} {!! $value->text !!} @if($value->send_to == 1) Candidate @elseif($value->send_to == 2) Admin @elseif($value->send_to == 3) Both @endif {{ $value->send_to_admin }} {{ $value->send_cc }} @if(check_route_access('email.notification.status'))
status=="1" ? 'checked="checked"' : '' }}>
@endif
@if(check_route_access('email.notification.edit.form')) @endif @if(check_route_access('email.notification.delete')) @endif
@endsection @section('scripts') @endsection