parfum/resources/views/components/modals/confirmations/request-price.blade.php
2025-12-09 13:33:49 +07:00

20 lines
730 B
PHP

<flux:modal name="show-price" class="w-[22rem]">
<div class="space-y-6">
<div>
<flux:heading size="lg">Konfirmasi</flux:heading>
<flux:text class="mt-2">Apakah Anda ingin mengajukan permintaan persetujuan kepada owner untuk
mengakses data harga beli?</flux:text>
</div>
<div class="flex gap-2">
<flux:spacer />
<flux:modal.close>
<flux:button variant="ghost">Batal</flux:button>
</flux:modal.close>
<flux:button type="submit" variant="primary"
wire:click="requestPrice('{{ $module }}')">
Ya, Ajukan
</flux:button>
</div>
</div>
</flux:modal>