Files
pds/resources/views/filament/pages/invoice-pending-reason.blade.php
dhanabalan 2e6f27824c
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 16s
Laravel Pint / pint (pull_request) Successful in 2m33s
Laravel Larastan / larastan (pull_request) Failing after 3m32s
changed logic in invoice pending reason page
2026-01-23 11:00:41 +05:30

36 lines
1.1 KiB
PHP

<x-filament-panels::page>
<div class="space-y-4">
{{ $this->filtersForm($this->form) }}
</div>
<div class="flex-row gap-2 mt-4">
<x-filament::button
{{-- type="button" --}}
{{-- wire:click="addRemark"
class="px-3 py-1 border border-primary-500 text-primary-600 rounded hover:bg-primary-50 hover:border-primary-700 transition text-sm" --}}
wire:click="addRemark"
color="primary"
class="mt-4"
>
Save
</x-filament::button>
<x-filament::button
wire:click="importPendingReason"
color="primary"
class="mt-4"
>
Import
</x-filament::button>
<x-filament::button
wire:click="exportPendingReason"
color="primary"
class="mt-4"
>
Export
</x-filament::button>
<div class="bg-white shadow rounded-xl p-4 mt-6">
<livewire:invoice-pending />
</div>
</div>
</x-filament-panels::page>