@extends('crm.layouts.app') @section('title') Support Dashboard @endsection @section('content')
@csrf
Make a call

Support Tickets

This is the list of most recent support tickets. Click the "Call customer" button to start a phone call from your browser.

@foreach ($tickets as $ticket)
Ticket #{{ $ticket->id }} {{ $ticket->created_at }}

Name: {{ $ticket->name }}

Phone number: {{ $ticket->phone_number }}

Description:

{{ $ticket->description }}
@endforeach
@endsection @section('scripts') @endsection