public function showEditModal($id)
{
// Fetch the row data based on ID
$this->editItem = BalanceSheet::find($id);
// dd($this->editItem);
$this->form->fill([
'preparer_comments' => $this->editItem->preparer_comments,
'accountNote' => $this->editItem->accountNote //can't seem to set just the field on this, have to set the entire relationship.
]);
$this->dispatch('open-modal', id: 'editRowModal');
}
public function showEditModal($id)
{
// Fetch the row data based on ID
$this->editItem = BalanceSheet::find($id);
// dd($this->editItem);
$this->form->fill([
'preparer_comments' => $this->editItem->preparer_comments,
'accountNote' => $this->editItem->accountNote //can't seem to set just the field on this, have to set the entire relationship.
]);
$this->dispatch('open-modal', id: 'editRowModal');
}