Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个与 Writer 模型具有一对一关系的 User 模型。
我正在尝试使用Form::model($user, ['route' => 'some-route'])来自 User 和 Writer 模型的值填充表单,但我只看到来自 User 模型的值(因为这是我在 中作为参数传递的Form::model())。
Form::model($user, ['route' => 'some-route'])
Form::model()
我希望我能做,Form::text('writer.something')但做不到。还有其他方法可以实现吗?或者这样做是个坏主意?
Form::text('writer.something')
问候。
这是 Laravel 4.0.0 中未实现的功能
我希望它在未来的更新中得到实施。:)