@extends('layouts.app') @section('title', 'Kelola Therapist') @section('content')

Kelola Therapist

Manajemen data therapist dan informasi profil

Daftar Therapist

{{ $therapists->firstItem() ?? 0 }} - {{ $therapists->lastItem() ?? 0 }} dari {{ $therapists->total() }}
@forelse($therapists as $index => $therapist)
{{ strtoupper(substr($therapist->name, 0, 1)) }}

{{ $therapist->name }}

{{ $therapist->username }}

Aktif
{{ $therapist->domicile }} @if($therapist->email) {{ $therapist->email }} @endif
@empty

Belum ada data therapist

Klik tombol "Tambah Therapist"

@endforelse
@if($therapists->hasPages())
Halaman {{ $therapists->currentPage() }} dari {{ $therapists->lastPage() }}
{{ $therapists->withQueryString()->links('vendor.pagination.tailwind-therapist') }}
@endif
@push('scripts') @endpush @endsection