@extends('settings.default') @push('css_lib') {{--dropzone--}}
@endpush @section('settings_title', 'Push Notification') @section('settings_content') @include('flash::message')
Push Notifications
{!! Form::open(['url' => ['settings/update'], 'method' => 'patch']) !!}
{!! Form::label('enable_notifications','Enable push notifications',['class' => 'col-2 control-label text-right']) !!}
{!! Form::hidden('enable_notifications', null) !!} {!! Form::checkbox('enable_notifications', 1, setting('enable_notifications', false)) !!}
Check it to push notifications using (Firebase Cloud Messaging)
{!! Form::label('fcm_key', 'Firebase Cloud Messaging Key', ['class' => 'col-2 control-label text-right']) !!}
{!! Form::text('fcm_key', setting('fcm_key'), ['class' => 'form-control',]) !!}
Insert Firebase Cloud Messaging Key
( https://console.firebase.google.com/ )
Save Notification
Cancel
{!! Form::close() !!}
@endsection