public function getRecord(): Model
{
return auth()->user()->business;
}
protected function resolveRecord(int|string|null $key): Model
{
return auth()->user()->business;
}
public function setRecord(Model|int|string|null $record): void
{
$this->record = auth()->user()->business;
}