Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 14s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 13s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 21s
Laravel Pint / pint (pull_request) Successful in 4m18s
Laravel Larastan / larastan (pull_request) Failing after 6m8s
21 lines
626 B
PHP
21 lines
626 B
PHP
<x-filament-panels::page>
|
|
{{ $this->form }}
|
|
|
|
<div class="flex flex-row gap-2 mt-4">
|
|
<button
|
|
type="button"
|
|
wire:click="uploadTaskPdf"
|
|
class="px-3 py-1 border border-primary-500 text-primary-600 rounded hover:bg-primary-50 hover:border-primary-700 transition text-sm"
|
|
>
|
|
Upload Task PDF
|
|
</button>
|
|
<button
|
|
type="button"
|
|
wire:click="removeTaskPdf"
|
|
class="px-3 py-1 border border-primary-500 text-primary-600 rounded hover:bg-primary-50 hover:border-primary-700 transition text-sm"
|
|
>
|
|
Remove Task PDF
|
|
</button>
|
|
</div>
|
|
</x-filament-panels::page>
|