|
@@ -26,6 +26,7 @@
|
|
<th class="px-3 border-0">Date</th>
|
|
<th class="px-3 border-0">Date</th>
|
|
<th class="border-0">Type</th>
|
|
<th class="border-0">Type</th>
|
|
<th class="border-0">Client</th>
|
|
<th class="border-0">Client</th>
|
|
|
|
+ <th class="border-0">Note</th>
|
|
{{--<th class="border-0">Reason</th>--}}
|
|
{{--<th class="border-0">Reason</th>--}}
|
|
<th class="border-0">Memo</th>
|
|
<th class="border-0">Memo</th>
|
|
<th class="border-0">Amount</th>
|
|
<th class="border-0">Amount</th>
|
|
@@ -50,6 +51,12 @@
|
|
-
|
|
-
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
|
|
+ <td>
|
|
|
|
+ @if($transaction->bill && $transaction->bill->note)
|
|
|
|
+ {!! $transaction->bill->note->summary() !!}
|
|
|
|
+ <a href="{{route('patients.view.notes.view.dashboard', ['patient'=>$transaction->client, 'note'=>$transaction->bill->note])}}">Go to note</a>
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
{{--<td>
|
|
{{--<td>
|
|
<a href="/patients/view/{{ $transaction->client->uid }}/care-months/view/{{ $transaction->bill->careMonth->uid }}">
|
|
<a href="/patients/view/{{ $transaction->client->uid }}/care-months/view/{{ $transaction->bill->careMonth->uid }}">
|
|
<b>{{ friendly_month($transaction->bill->careMonth->start_date) }}</b>
|
|
<b>{{ friendly_month($transaction->bill->careMonth->start_date) }}</b>
|