@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title',['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("admin.dashboard"), ] ], 'active' => __("Push Notification")]) @endsection @section('content')
{{ __("Browser Push Notification Configuration") }}
@csrf @method("PUT")
@php $selectOptions = ['pusher' => "Pusher (Message Bird)"]; $old_value = old('method',$push_notification->method ?? ""); @endphp
@include('admin.components.button.form-btn',[ 'class' => "w-100 btn-loading", 'text' => __("update"), 'permission' => "admin.push.notification.update", ])
{{ __("Broadcasting/ Internal Notification Configuration") }}
@csrf @method("PUT")
@php $selectOptions = ['pusher' => "Pusher (Message Bird)"]; $old_value = old('broadcast_method',$broadcast_config->method ?? ""); @endphp
@include('admin.components.button.form-btn',[ 'class' => "w-100 btn-loading", 'text' => __("update"), 'permission' => "admin.broadcast.config.update", ])
@endsection @push('script') @endpush