This commit is contained in:
f4ilji
2024-11-19 00:18:20 +05:00
parent 4b103325f7
commit dc1c175518
8 changed files with 28 additions and 24 deletions
@@ -19,8 +19,9 @@ class ClientPersonDepartmentPreviewResource extends JsonResource
'name' => $this->name,
'slug' => $this->slug,
'academicTitle' => $this->userDetail->academicTitle,
'contactPhone' => $this->userDetail->contactPhone,
'contactEmail' => $this->userDetail->contactEmail,
'contactPhone' => $this->pivot->service_phone,
'contactEmail' => $this->pivot->service_email,
'cabinet' => $this->pivot->cabinet,
'photo' => $this->userDetail->photo,
'position' => $this->pivot->position,
];
@@ -19,8 +19,9 @@ class ClientPersonDepartmentTeachPreviewResource extends JsonResource
'name' => $this->name,
'slug' => $this->slug,
'academicTitle' => $this->userDetail->academicTitle,
'contactPhone' => $this->userDetail->contactPhone,
'contactEmail' => $this->userDetail->contactEmail,
'contactPhone' => $this->pivot->service_phone,
'contactEmail' => $this->pivot->service_email,
'cabinet' => $this->pivot->cabinet,
'photo' => $this->userDetail->photo,
'position' => $this->pivot->teaching_position,
];
@@ -19,8 +19,9 @@ class ClientPersonDivisionPreviewResource extends JsonResource
'name' => $this->name,
'slug' => $this->slug,
'academicTitle' => $this->userDetail->academicTitle,
'contactPhone' => $this->userDetail->contactPhone,
'contactEmail' => $this->userDetail->contactEmail,
'contactPhone' => $this->pivot->service_phone,
'contactEmail' => $this->pivot->service_email,
'cabinet' => $this->pivot->cabinet,
'photo' => $this->userDetail->photo,
'administrativePosition' => $this->pivot->administrativePosition,
'sort' => $this->pivot->sort,
@@ -19,8 +19,9 @@ class ClientPersonFacultyPreviewResource extends JsonResource
'name' => $this->name,
'slug' => $this->slug,
'academicTitle' => $this->userDetail->academicTitle,
'contactPhone' => $this->userDetail->contactPhone,
'contactEmail' => $this->userDetail->contactEmail,
'contactPhone' => $this->pivot->service_phone,
'contactEmail' => $this->pivot->service_email,
'cabinet' => $this->pivot->cabinet,
'photo' => $this->userDetail->photo,
'position' => $this->pivot->position,
];
@@ -10,14 +10,14 @@
<p v-if="teacher.academicTitle !== null" class="text-xs text-gray-500 mt-2">
Ученая степень: {{ teacher.academicTitle }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="teacher.contactPhone" class="text-xs text-gray-500 mt-2">
Контактный телефон: {{ teacher.contactPhone }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="teacher.contactEmail" class="text-xs text-gray-500 mt-2">
Электронная почта: {{ teacher.contactEmail }}
</p>
<p class="text-xs text-gray-500 mt-2">
Кабинет: 207В
<p v-if="teacher.cabinet" class="text-xs text-gray-500 mt-2">
Кабинет: {{ teacher.cabinet }}
</p>
</div>
</div>
@@ -10,14 +10,14 @@
<p v-if="worker.academicTitle !== null" class="text-xs text-gray-500 mt-2">
Ученая степень: {{ worker.academicTitle }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="worker.contactPhone" class="text-xs text-gray-500 mt-2">
Контактный телефон: {{ worker.contactPhone }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="worker.contactEmail" class="text-xs text-gray-500 mt-2">
Электронная почта: {{ worker.contactEmail }}
</p>
<p class="text-xs text-gray-500 mt-2">
Кабинет: 207В
<p v-if="worker.cabinet" class="text-xs text-gray-500 mt-2">
Кабинет: {{ worker.cabinet }}
</p>
</div>
</div>
@@ -10,14 +10,14 @@
<p v-if="worker.academicTitle !== null" class="text-xs text-gray-500 mt-2">
Ученая степень: {{ worker.academicTitle }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="worker.contactPhone" class="text-xs text-gray-500 mt-2">
Контактный телефон: {{ worker.contactPhone }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="worker.contactEmail" class="text-xs text-gray-500 mt-2">
Электронная почта: {{ worker.contactEmail }}
</p>
<p class="text-xs text-gray-500 mt-2">
Кабинет: 207В
<p v-if="worker.cabinet" class="text-xs text-gray-500 mt-2">
Кабинет: {{ worker.cabinet }}
</p>
</div>
</div>
@@ -10,14 +10,14 @@
<p v-if="worker.academicTitle !== null" class="text-xs text-gray-500 mt-2">
Ученая степень: {{ worker.academicTitle }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="worker.contactPhone" class="text-xs text-gray-500 mt-2">
Контактный телефон: {{ worker.contactPhone }}
</p>
<p class="text-xs text-gray-500 mt-2">
<p v-if="worker.contactEmail" class="text-xs text-gray-500 mt-2">
Электронная почта: {{ worker.contactEmail }}
</p>
<p class="text-xs text-gray-500 mt-2">
Кабинет: 207В
<p v-if="worker.cabinet" class="text-xs text-gray-500 mt-2">
Кабинет: {{ worker.cabinet }}
</p>
</div>
</div>