Skip to content

Commit

Permalink
Adds filtered subtitle
Browse files Browse the repository at this point in the history
  • Loading branch information
cdterry87 committed Aug 10, 2024
1 parent 975c29e commit 08af3a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion resources/views/livewire/bill-list.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<div>
@if ($filterShowing === 'current')
<h3 class="font-semibold text-xl text-zinc-600">For {{ date('F Y') }}</h3>
<h3 class="font-semibold text-xl text-zinc-600">
For {{ date('F Y') }}
@if ($filterSearch || $filterCategory)
<span class="italic ml-1">(Filtered)</span>
@endif
</h3>
@endif
<div class="flex flex-col gap-6">
<div class="flex flex-col-reverse lg:flex-row gap-2 items-end justify-between lg:gap-6 mt-4">
Expand Down

0 comments on commit 08af3a6

Please sign in to comment.