Browse Source

Show pro full-name in events

Vijayakrishnan 4 years ago
parent
commit
72d4f19887
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/AppointmentController.php

+ 1 - 1
app/Http/Controllers/AppointmentController.php

@@ -37,7 +37,7 @@ class AppointmentController extends Controller
         $events = [];
         foreach ($appointments as $appointment) {
             $events[] = [
-                "title" => '(' . $appointment->pro->initials() . ') ' . $appointment->client->displayName(),
+                "title" => $appointment->pro->displayName(),
                 "_title" => $appointment->title,
                 "description" => $appointment->description,
                 "clientName" => $appointment->client->displayName(),