|
@@ -3,7 +3,7 @@
|
|
|
@if($patient->smses && count($patient->smses))
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Date & Time</th>
|
|
|
+ <th class="px-2 text-secondary border-bottom-0 text-nowrap">Date & Time</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">Type</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">From</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">To</th>
|
|
@@ -13,7 +13,7 @@
|
|
|
<tbody>
|
|
|
@foreach($patient->smses as $sms)
|
|
|
<tr>
|
|
|
- <td class="px-2">{{ friendly_date_time($sms->created_at) }}</td>
|
|
|
+ <td class="px-2 text-nowrap">{{ friendly_date_time($sms->created_at) }}</td>
|
|
|
<td class="px-2">{{ ucwords($sms->incoming_or_outgoing) }}</td>
|
|
|
<td class="px-2">{{ $sms->from_number }}</td>
|
|
|
<td class="px-2">{{ $sms->to_number }}</td>
|