@extends('layouts/layoutMaster') @section('title', ($providerDetails->display_name ?? 'Provider') . ' — Settings') @section('content') @php $provId = $providerDetails->uuid ?? ''; @endphp

Provider Details

Configuration and general settings.

@include('providers.administrator._header', ['providerDetails' => $providerDetails])
@include('providers.administrator._nav', ['activePage' => 'settings', 'providerDetails' => $providerDetails])
{{-- General Settings --}}
General Settings
Provider identity and display configuration.
Linked business entity in SPSERP. Cannot be changed.
use_display_name ?? 0) == 1 ? 'checked' : '' }} />
{{-- Moderator Settings --}}
Moderator Configuration
Control how moderators are assigned to document requests.
Use Default Moderators

When enabled, moderators are sourced from the system-wide default roles. When disabled, only moderators explicitly assigned to this provider are used.

using_default_moderators ?? 1) == 1 ? 'checked' : '' }} onchange="toastNoti('Moderator setting update is under development.', 'info')" />
{{-- Audit Info --}}
Audit Information
Record timestamps and history.
Created {{ $providerDetails->created_at ?? '—' }}
Last Updated {{ $providerDetails->updated_at ?? '—' }}
@endsection