@props(['user' => null]) @php $user = $user ?? auth()->user(); @endphp @if($user && $user->is_officer)

Station Information

Assigned Station:

{{ $user->station ? $user->station->name : 'No Station Assigned' }}

Data Access Level:

@if($user->hasMultiStationAccess()) All Stations @else Station Only @endif

@if($user->station)
Station Code:

{{ $user->station->code ?? 'N/A' }}

Location:

{{ $user->station->location ?? 'N/A' }}

@endif @if(!$user->hasMultiStationAccess())
Note: You can only view data from your assigned station. Contact your supervisor if you need access to data from other stations.
@endif
@endif