You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pay-bills.blade.php 650B

1234567891011121314151617
  1. <x-filament-panels::page>
  2. <div class="space-y-6">
  3. <div class="bg-white rounded-lg border border-gray-200 p-6">
  4. <div class="flex items-center justify-between mb-4">
  5. <div>
  6. {{ $this->form }}
  7. </div>
  8. <div class="text-right">
  9. <div class="text-sm text-gray-500">Total Payment Amount</div>
  10. <div class="text-xl font-semibold text-gray-900" id="total-amount">{{ $this->totalSelectedPaymentAmount }}</div>
  11. </div>
  12. </div>
  13. </div>
  14. {{ $this->table }}
  15. </div>
  16. </x-filament-panels::page>