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.

transactions.blade.php 381B

1234567891011121314
  1. <x-filament-panels::page>
  2. {{ $this->form }}
  3. {{ $this->table }}
  4. @script
  5. <script>
  6. const transactionId = localStorage.getItem('openTransactionId');
  7. if (transactionId) {
  8. localStorage.removeItem('openTransactionId');
  9. $wire.openModalForTransaction(transactionId);
  10. }
  11. </script>
  12. @endscript
  13. </x-filament-panels::page>