{{-- Read the $type that was passed from the route --}}
@php
$tool = isset($type) ? $type : request('type');
@endphp
{{-- If the user clicked “TransferCall” --}}
@if ($tool === 'transfer-call')
TransferCall Tool Form
{{-- If the user clicked “Google Calendar” --}}
@elseif($tool === 'google-calendar')
Google Calendar
@elseif($tool === 'google-sheet')
Google Sheet
{{-- If the user clicked “Google Calendar Check Availability” --}}
@elseif($tool === 'google-calendar-check')
Google Calendar Check Availability Form
{{-- If the user clicked “GHL Calendar” --}}
@elseif($tool === 'ghl-calendar')
GHL Calendar
{{-- If the user clicked “Query” --}}
@elseif($tool === 'query')
Query Tool
{{-- If the user clicked “Send Text” --}}
@elseif($tool === 'send-text')
Send Text
{{-- If the user clicked “DTMF” --}}
@elseif($tool === 'dtmf')
DTMF Tool
{{-- If the user clicked “End Call” --}}
@elseif($tool === 'end-call')
End Call
@else
Unknown tool: “{{ $tool }}”.
Please pick a valid tool from the dropdown.