May 14, 2024
0
Level 1
Confirmation modal for Laravel Nova Event
I have a Nova which is called Order and i have an a event
Button::make('Add payment') ->style('info') ->event(AdminPayment::class) ->canSee(function ($request) { // Show the button only if the order is not paid or completed return !in_array($this->status, ['paid', 'completed']); })
I want when i click this button to popup an a confirmation modal. I tried with CustomTool, Packages, Button confrim method but nothing seems to work. Any ideas?
Please or to participate in this conversation.