@extends("common.layout-popup") @section("page-title", "상담 예약 관리") @section("header") {!! resource('css/form.css') !!} @endsection @section("content")
회원 정보
{{$inquiry?->name}}
{{$inquiry?->phone}}
@if ($inquiry?->academyCounsel)
상담예약 내역
@php $details = $inquiry?->academyCounsel()->orderBy('created_at', 'desc')->get(); @endphp @foreach ( $details as $item ) @endforeach
번호 상담 예약일 상담 예약시간 방문구분 담당자 상담 메모
{{ $item->id }} is_completed == 1 ? "disabled" : ""}} /> is_completed == 1 ? "disabled" : ""}} /> @if ($item->is_completed == 0) @endif
@endif @endsection @push("script") @endpush