|
@@ -5,7 +5,7 @@
|
|
<div class="p-3 mcp-theme-1">
|
|
<div class="p-3 mcp-theme-1">
|
|
<div class="card">
|
|
<div class="card">
|
|
|
|
|
|
- <div class="card-header px-3 py-2 d-flex align-items-center">
|
|
|
|
|
|
+ <div class="card-header px-2 py-1 d-flex align-items-center">
|
|
<strong class="mr-4">
|
|
<strong class="mr-4">
|
|
<i class="fas fa-user"></i>
|
|
<i class="fas fa-user"></i>
|
|
Accounts Invites ({{ $accountInvites->total() }})
|
|
Accounts Invites ({{ $accountInvites->total() }})
|
|
@@ -15,38 +15,38 @@
|
|
<div class="p-3">
|
|
<div class="p-3">
|
|
@include('app.practice-management.patients-accounts-invites-filters')
|
|
@include('app.practice-management.patients-accounts-invites-filters')
|
|
</div>
|
|
</div>
|
|
- <table class="table table-sm table-condensed p-0 m-0">
|
|
|
|
|
|
+ <table class="table table-sm table-striped border-top p-0 m-0">
|
|
<thead class="bg-light">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<tr>
|
|
- <th class="px-2 text-secondary border-bottom-0">Created At</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Client</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Name</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Email</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Cell Number</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0">Status</th>
|
|
|
|
- <th class="px-2 text-secondary border-bottom-0"> </th>
|
|
|
|
|
|
+ <th class="text-secondary border-0">Created At</th>
|
|
|
|
+ <th class="text-secondary border-0">Client</th>
|
|
|
|
+ <th class="text-secondary border-0">Name</th>
|
|
|
|
+ <th class="text-secondary border-0">Email</th>
|
|
|
|
+ <th class="text-secondary border-0">Cell Number</th>
|
|
|
|
+ <th class="text-secondary border-0">Status</th>
|
|
|
|
+ <th class="text-secondary border-0"> </th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($accountInvites as $accountInvite)
|
|
@foreach($accountInvites as $accountInvite)
|
|
<tr>
|
|
<tr>
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
{{ friendlier_date_time($accountInvite->created_at) }}
|
|
{{ friendlier_date_time($accountInvite->created_at) }}
|
|
@if($accountInvite->status === 'CANCELLED')
|
|
@if($accountInvite->status === 'CANCELLED')
|
|
<span class="text-sm text-secondary">(CANCELLED)</span>
|
|
<span class="text-sm text-secondary">(CANCELLED)</span>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
- <td class="px-2">{{ $accountInvite->client->displayName() }}</td>
|
|
|
|
- <td class="px-2">{{ $accountInvite->first_name }} {{ $accountInvite->last_name }}</pre>
|
|
|
|
|
|
+ <td>{{ $accountInvite->client->displayName() }}</td>
|
|
|
|
+ <td>{{ $accountInvite->first_name }} {{ $accountInvite->last_name }}</pre>
|
|
</td>
|
|
</td>
|
|
- <td class="px-2">{{ $accountInvite->to_email_address }}</td>
|
|
|
|
- <td class="px-2">{{ $accountInvite->cell_number }}</td>
|
|
|
|
- <td class="px-2">{{ $accountInvite->status }} <span class="text-sm text-secondary">(Updated: {{friendlier_date_time($accountInvite->status_updated_at)}})</span>
|
|
|
|
|
|
+ <td>{{ $accountInvite->to_email_address }}</td>
|
|
|
|
+ <td>{{ $accountInvite->cell_number }}</td>
|
|
|
|
+ <td>{{ $accountInvite->status }} <span class="text-sm text-secondary">(Updated: {{friendlier_date_time($accountInvite->status_updated_at)}})</span>
|
|
@if($accountInvite->status_memo)
|
|
@if($accountInvite->status_memo)
|
|
<div class="py-1 font-italic text-secondary text-sm">{{$accountInvite->status_memo}}</div>
|
|
<div class="py-1 font-italic text-secondary text-sm">{{$accountInvite->status_memo}}</div>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
<div class="d-flex">
|
|
<div class="d-flex">
|
|
@if($accountInvite->status === 'PENDING')
|
|
@if($accountInvite->status === 'PENDING')
|
|
<span moe class="ml-1" relative>
|
|
<span moe class="ml-1" relative>
|