@extends('admin.portal') @section('title', 'Upcoming Audits & Advisory Calls') @section('header_title', 'Upcoming Audits & Advisory Calls') @section('content')

Upcoming Audits & Advisory Calls

Scheduled sessions with WST advisors

Schedule New
@forelse($schedules as $s)
{{ $s->time_preference->format('M') }}
{{ $s->time_preference->format('d') }}
{{ $s->company }}
{{ $s->first_name }}
Session @php $interests = [ 'gresb' => 'Improve GRESB Score', 'audit' => 'Comprehensive Portfolio Audit', 'monitoring' => 'Smart Monitoring Implementation', 'savings' => 'Cost Reduction & Efficiency', 'compliance' => 'Regulatory Compliance' ]; @endphp {{ $interests[$s->interest] ?? 'General Inquiry' }}
Time @if($s->time_preference) {{ $s->time_preference->format('M d, Y') }} • {{ $s->time_preference->format('H:i') }} @else Not Scheduled @endif
Properties {{ $s->portfolio_size }}
@php if($s->status == 1) { $status = 'Approved'; $color = 'pill-green'; } elseif($s->status == 2) { $status = 'Rejected'; $color = 'pill-red'; } else { $status = 'Pending'; $color = 'pill-amber'; } @endphp {{ $status }} @if($s->status == 1 && $s->meeting_link) Join Meeting @elseif($s->status == 1) Link in progress @elseif($s->status == 2) Rejected @else Pending approval @endif
@empty

No schedules found.

@endforelse
@endsection