@extends('frontend.default.layouts.app') @section('breadcrumb') {{ __('common.notifications') }} {{ __('common.setting') }} @endsection @section('title') {{ __('common.notifications') }} {{ __('common.setting') }} @endsection @section('content') @include('frontend.default.partials._breadcrumb') @include('frontend.default.pages.profile.partials._menu') {{ __('common.sl') }} {{ __('hr.event') }} {{ __('common.type') }} @foreach ($userNotificationSettings as $userNotificationSetting) @csrf {{ $loop->index+1 }} {{ $userNotificationSetting->notification_setting->event }} @if (Str::contains($userNotificationSetting->notification_setting->type,'email')) type,'email')) checked @endif type="checkbox"> {{__('common.email')}} @endif @if (Str::contains($userNotificationSetting->notification_setting->type,'mobile')) type,'mobile')) checked @endif type="checkbox"> {{__('common.mobile')}} @endif @if (Str::contains($userNotificationSetting->notification_setting->type,'sms')) type,'sms')) checked @endif type="checkbox"> {{__('common.sms')}} @endif @if (Str::contains($userNotificationSetting->notification_setting->type,'system')) type,'system')) checked @endif type="checkbox"> {{__('common.system')}} @endif @endforeach @endsection @push('scripts') @endpush