@extends('adminlte::page')
@section('title', 'System & Backups')
@include('partials.ui-polish')
@section('content_header')
System & Backups
Global settings, support, health, backup schedules, and disaster recovery status
@stop
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if($errors->any())
@foreach($errors->all() as $error)- {{ $error }}
@endforeach
@endif
@include('admin.platform.partials.support-table', ['tickets' => $tickets])
@include('admin.platform.partials.backup-table', ['backups' => $backups])
| Role | Users |
@foreach($usage['usersByRole'] as $role => $total)
| {{ $role }} | {{ $total }} |
@endforeach
@stop