У меня есть отношение HasOne между двумя моделями.
В Laravel Nova возможно ли объединить их в одну панель при просмотре деталей и обновить обе модели вместе при обновлении деталей.
Эта функция официально не поддерживается в laravel nova.но есть обходной путь для достижения этого с использованием модельных аксессоров и мутаторов. этот ответ может помочь вам
Пример:
// in the model public function getProfilePictureAttribute() { // Don't forget to check the relation here if you don't want any error on Nova. return $this->profile ? $this->profile->picture : null; } public function setProfilePictureAttribute($value) { $profile = $this->profile; $profile->fill(['picture' => $value]); $profile->save(); } // in the resource Image::make('Profile picture')