@extends('layouts.admin')
@php
$label = fn (string $group, ?string $value): string => $value === null
? ''
: (trans()->has("scheduling.{$group}.{$value}") ? __("scheduling.{$group}.{$value}") : (string) str($value)->headline());
@endphp
@section('title', __('scheduling.title'))
@section('content')
{{ __('scheduling.dashboard') }}
| {{ __('scheduling.fields.when') }} | {{ __('scheduling.fields.customer') }} | {{ __('scheduling.fields.type') }} | {{ __('scheduling.fields.assignee') }} | {{ __('scheduling.fields.state') }} | @if($canManage){{ __('scheduling.fields.workflow') }} | @endif
|---|---|---|---|---|---|
|
{{ $meeting->scheduled_start_at->format('Y-m-d H:i') }} UTC {{ $meeting->scheduled_start_at->setTimezone($meeting->customer_timezone)->format('Y-m-d H:i') }} ({{ $meeting->customer_timezone }}) |
{{ $meeting->customer_name }} {{ $meeting->customer_email }} |
{{ $meeting->type->name }} |
{{ $meeting->assignee_name_snapshot }} {{ $label('kinds', $meeting->assignee_kind->value) }} |
{{ $label('statuses', $meeting->status->value) }}
{{ $label('confirmations', $meeting->confirmation_status) }} |
@if($canManage)
@if($meeting->status->value==='scheduled')
{{ __('scheduling.actions.reschedule') }} |
@endif
{{ __('scheduling.empty') }} | |||||
{{ __('scheduling.actions.booking') }}