@extends('layouts.admin') @section('title', 'Kelola Tim') @section('content')
Kelola anggota tim dan profil mereka
Total Anggota
{{ $teams->total() }}
Aktif
{{ $teams->where('is_active', true)->count() }}
Nonaktif
{{ $teams->where('is_active', false)->count() }}
Dengan Foto
{{ $teams->whereNotNull('photo')->count() }}