0

Method PowerComponents\LivewirePowerGrid\Button::confirm does not exist.

I using laravel powergrid table action buttons now i click delete delete button confirmation alert not working show this error

My Livewire Action code

public function actions(): array
    {
       return [
        Button::add('view')
        ->caption('Edit')
        ->target('_self')
        ->class('btn btn-primary')
        ->route('productedit', ['id' => 'id']),
    Button::make('delete', 'Delete')
    ->target('_self')
    ->class('btn btn-danger')
    ->confirm('Are you sure you want to delete this record?')
    ->emit('productdelete', ['id' => 'id'])
        ];
    }`

0 Answers0