|
@@ -5,25 +5,37 @@
|
|
<div class="p-3 mcp-theme-1">
|
|
<div class="p-3 mcp-theme-1">
|
|
<div class="card">
|
|
<div class="card">
|
|
|
|
|
|
- <div class="card-header p-3 d-flex align-items-center">
|
|
|
|
- <strong class="mr-4">
|
|
|
|
|
|
+ <div class="card-header px-3 py-2 d-flex align-items-center">
|
|
|
|
+ <strong class="text-nowrap">
|
|
<i class="fas fa-user-injured"></i>
|
|
<i class="fas fa-user-injured"></i>
|
|
Payment Rates
|
|
Payment Rates
|
|
</strong>
|
|
</strong>
|
|
|
|
+ <span class="mx-2">for</span>
|
|
|
|
+ <select name="proUid" class="form-control form-control-sm mr-auto width-200px"
|
|
|
|
+ onchange="fastLoad('/practice-management/rates/' + this.value)">
|
|
|
|
+ <option value="all" {{$selectedProUid === 'all' ? 'selected' : ''}}>All Pros</option>
|
|
|
|
+ @foreach($pros as $apro)
|
|
|
|
+ <option value="{{$apro->uid}}" {{$selectedProUid === $apro->uid ? 'selected' : ''}}>{{$apro->name_first}} {{$apro->name_last}}</option>
|
|
|
|
+ @endforeach
|
|
|
|
+ </select>
|
|
</div>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<div class="card-body p-0">
|
|
|
|
|
|
<table class="table table-sm table-condensed p-0 m-0">
|
|
<table class="table table-sm table-condensed p-0 m-0">
|
|
<thead class="bg-light">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<tr>
|
|
- <th class="px-3 border-0">Responsibility</th>
|
|
|
|
- <th class="border-0">Code</th>
|
|
|
|
- <th class="border-0">Amount</th>
|
|
|
|
|
|
+ <th class="w-25 px-3 border-0">Pro</th>
|
|
|
|
+ <th class="w-25 border-0">Responsibility</th>
|
|
|
|
+ <th class="w-25 border-0">Code</th>
|
|
|
|
+ <th class="w-25 border-0">Amount</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@foreach ($rates as $rate)
|
|
@foreach ($rates as $rate)
|
|
<tr>
|
|
<tr>
|
|
|
|
+ <td class="px-3">
|
|
|
|
+ {{ $rate->pro->displayName() }}
|
|
|
|
+ </td>
|
|
<td class="px-3">
|
|
<td class="px-3">
|
|
{{ $rate->responsibility }}
|
|
{{ $rate->responsibility }}
|
|
</td>
|
|
</td>
|