@extends('layouts.page') @section('title', 'Support Team') @section('content') @php $pageName = 'Support Team'; // Set the dynamic page name $verifiedCount = $users->where('is_verified', true)->count(); @endphp

Everyone currently handling support across the platform.

{{ $users->count() }} Members
{{--
--}} {{-- --}} {{-- --}} {{-- {{ $verifiedCount }}--}} {{-- Verified--}} {{-- --}} {{--
--}}
@if($users->isEmpty())

No Support Team Members

@else
@foreach ($users as $user)
{{ $user->name }}
@endforeach
@endif
@endsection