Merge pull request #354 from WDI-Ideas/sayaliP

Sayali p
This commit is contained in:
CodewithSayali
2024-07-18 12:26:31 +05:30
committed by GitHub

View File

@@ -23,6 +23,7 @@
<th> Phone Number </th>
<th>State</th>
<th>Subscription Date and Time</th>
<th> Next Subscription Date and Time </th>
</tr>
</thead>
<tbody>
@@ -35,6 +36,7 @@
<td>{{ $subscription->iamPrincipal->phone_number}}</td>
<td>{{ $subscription->iamPrincipal->state->name ?? 'N/A' }}</td>
<td>{{\Carbon\Carbon::parse($subscription->created_at)->format('m-d-Y H:i')}}</td>
<td>{{\Carbon\Carbon::parse($subscription->next_payment_date)->format('m-d-Y H:i')}}</td>
</tr>
@endforeach
</tbody>