@extends('layout_dashboard') @section('title', $title ?? '') @section('content')
@include('parts.alert')
{{ $psychologist->type }}

{{ $psychologist->user->name }}

{{ $psychologist->session }} + Sesi
100% Terbantu ({{ $psychologist->review }} Ulasan)
{{ $psychologist->experience }}
Cari Jadwal
Detail Psikolog

SIPP

{{ $psychologist->sipp }}

STR

{{ $psychologist->str }}

{{ $psychologist->description}}

Pendidikan
@foreach ( $psychologist->user->educations as $e)

{{ $e->university }}

{{ $e->year_start }} - {{ $e->year_end }} {{ $e->study_program }}

@endforeach
Topik Keahlian
@foreach ( $psychologist->user->topics as $tp) {{ $tp->name }} @endforeach
Jadwal dan Layanan Tersedia
@foreach ($schedules as $s)
schedule_assigned->isNotEmpty()) @else data-bs-toggle="modal" data-bs-target="#assignedModal" data-schedule-id="{{ $s->id }}" style="cursor: pointer;" @endif > {{ my_timestamp_to_id($s->datetime_start)['date'] }}
{{ my_timestamp_to_id($s->datetime_start)['time'] }} - {{ my_timestamp_to_id($s->datetime_end)['time'] }} WIB @if ($s->schedule_assigned->isNotEmpty())
Tidak Tersedia
@else
Tersedia
@endif
@endforeach
Ulasan
@foreach ($reviews as $r)
Avatar
{{ $r->schedule_assigned->user->name }}
{{ my_timestamp_to_id($r->created_at)['date'] }}

{{ $r->schedule_assigned->schedule->service->name }} | {{ $r->schedule_assigned->schedule->user->psychologist->type }} {!! my_review_stars_html($r->rating) !!}

{{ $r->comment }}

@endforeach
{{ $reviews->appends(request()->input())->links('pagination::bootstrap-5') }}
@endsection @section('css') @endsection @section('js') @endsection