You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using "laravel/framework": "^10.48", "livewire/livewire": "^3.5", "jantinnerezo/livewire-alert": "^3.0", getting error "inputAttributes" => null my code is public function reject(string $id)
{
$this->modelId = $id;
$this->confirm("Please provide a clear and detailed reason for the rejection of the player's account.", [
'onConfirmed' => 'rejectConfirmed',
'onDismissed' => 'cancelled',
'confirmButtonText' => 'Reject',
'cancelButtonText' => 'Cancel',
'input' => 'textarea',
'inputPlaceholder' => 'Enter your reason here'
]);
}
public function rejectConfirmed($data)
{
dd($data); }`
`
The text was updated successfully, but these errors were encountered:
I'm using
"laravel/framework": "^10.48", "livewire/livewire": "^3.5", "jantinnerezo/livewire-alert": "^3.0",
getting error"inputAttributes" => null my code is
public function reject(string $id){
$this->modelId = $id;
$this->confirm("Please provide a clear and detailed reason for the rejection of the player's account.", [
'onConfirmed' => 'rejectConfirmed',
'onDismissed' => 'cancelled',
'confirmButtonText' => 'Reject',
'cancelButtonText' => 'Cancel',
'input' => 'textarea',
'inputPlaceholder' => 'Enter your reason here'
]);
}
`
The text was updated successfully, but these errors were encountered: