我有一个数据,该数据非常重要,但是由于某种原因我不使用softdeletes,因此如果删除该数据,则非常危险。 我使用javascript弹出点击确认,但我认为这还不够。
在此laravel jetstream上,此配置文件,删除帐户和删除浏览器登录历史记录上的功能具有密码确认。我如何将其用于我的livewire组件?我尝试使用此link,但我仍然不知道
及其我的电线
public function enableAdminMode()
{
$this->ensurePasswordIsConfirmed();
// ...
}
public function delete($id)
{
AnakBelanja::find($id)->delete();
$this->emit('alert', ['type' => 'error', 'message' =>'Data Terhapus dari System']);
}
在刀片上我添加了这个。但我不知道该怎么办
<x-jet-confirms-password wire:then="enableAdminMode">
<x-jet-button type="button" wire:loading.attr="disabled">
{{ __('Enable') }}
</x-jet-button>
</x-jet-confirms-password>
有人可以帮我吗?