@extends('admin.layouts.main') @section('title') Consultant Detail @endsection @section('content')
@include("admin.common.sidebar")
User

{{ $consultant->present()->name }}

@if($consultant->consultant_profile->approved_at) Approved @elseif($consultant->consultant_profile->rejected_at) Rejected @elseif($consultant->consultant_profile->status == 'completed' && !$consultant->consultant_profile->approved_at && !$consultant->consultant_profile->rejected_at) Pending Approval @else Draft @endif @if($activePlan) {{ $activePlan->name }} @endif @if($consultant->consultant_profile->approved_at) @if(!$consultant->consultant_profile->plan_remaining_days) Expired @elseif($consultant->consultant_profile->profile_disabled_at) Deactivated @else Activated @endif @endif
@if($consultant->consultant_profile->status == 'completed' && !$consultant->consultant_profile->approved_at && !$consultant->consultant_profile->rejected_at)
@if(!$consultant->consultant_profile->approved_at && !$consultant->consultant_profile->rejected_at) Approve Reject @endif View Profile
@endif
@include('admin.modules.consultant.personal_details') @include('admin.modules.consultant.profile') @include('admin.modules.consultant.docs')
@endsection @push('pageJs') @endpush @push('pageModals') @endpush