@extends('layouts.user_type.auth') @section('content')

Create Tool

Tools List
{{-- 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

@csrf {{-- Destinations --}}
Destinations
{{-- Function --}}
Function
Only letters, numbers, dashes, or underscores
{{-- Messages --}}
Messages
{{-- If the user clicked “Google Calendar” --}} @elseif($tool === 'google-calendar')

Google Calendar

@csrf
@elseif($tool === 'google-sheet')

Google Sheet

@csrf

No messages configured. Click “Add Message” to add your first message.

{{-- If the user clicked “Google Calendar Check Availability” --}} @elseif($tool === 'google-calendar-check')

Google Calendar Check Availability Form

@csrf
Only letters, numbers, dashes, or underscores
{{-- Tool Description --}}
{{-- Calendar ID --}}
{{-- Date --}}
{{-- Time --}}
{{-- If the user clicked “GHL Calendar” --}} @elseif($tool === 'ghl-calendar')

GHL Calendar

@csrf
{{-- If the user clicked “Query” --}} @elseif($tool === 'query')

Query Tool

@csrf
Knowledge Bases

No messages configured. Click “Add Message” to add your first message.

{{-- If the user clicked “Send Text” --}} @elseif($tool === 'send-text')

Send Text

@csrf

No messages configured. Click “Add Message” to add your first message.

{{-- If the user clicked “DTMF” --}} @elseif($tool === 'dtmf')

DTMF Tool

Parameters

No properties configured. Click “Add Property” to add your first property.

No messages configured. Click “Add Message” to add your first message.

{{-- If the user clicked “End Call” --}} @elseif($tool === 'end-call')

End Call

Parameters

No properties configured. Click “Add Property” to add your first property.

No messages configured. Click “Add Message” to add your first message.

@else
Unknown tool: “{{ $tool }}”.
Please pick a valid tool from the dropdown.
@endif
@endsection @section('script') @endsection