@extends('portal.layout') @section('content')

{{ str($role)->replace('_',' ')->title() }} dashboard

Information is limited to your authorized role and organization scope.

@forelse($stats as $label=>$value)
{{ $label }}{{ $value }}
@empty
DashboardReady
@endforelse

Member status

@php($max=max(1,...array_values($chart)))@foreach($chart as $label=>$value){{ $label }} · {{ $value }}
@endforeach

Pending approvals

{{ $pending }}

Items shown are limited to your workflow authority.

Quick actions

@forelse($quick_actions as $action)

{{ $action }}

@empty

No administrative actions assigned.

@endforelse

Recent authorized activity

@forelse($activity as $item)

{{ $item->action }} · {{ $item->created_at->diffForHumans() }}

@empty

No authorized recent activity.

@endforelse

Alerts

@forelse($alerts as $alert)

{{ $alert }}

@empty

No active alerts.

@endforelse
@endsection