我有一个简单的数据库应用程序来记录联系人(姓名,地址等)。我试图在各种其他表上绘制以生成表单的值列表。然后我希望用户输入的所有表单值都保存到提交的相应表中。
例如,我有people
表,其中包含名称和地址。我有一个title
表,其中包含标题的不同可能值(即Mr.,Mrs.,Ms. Ms.)。在填写联系表单后,我想从标题表中生成表单中标题字段的值。我正在尝试为联系人创建一个模型,其中包括人员表和标题表的单独类。
在我的ContactController.php中,我有:
class ContactController extends Controller {
public function index()
{
$people = Contact::all();
// return main homepage for Contacts section
return view('pages.contacts.home', compact('people'));
}
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
$title = Contact::lists('title', 'id');
return view('pages.contacts.create');
}
在我的Contact.php模型中,我有以下内容:
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Contact extends Model {
protected $table = 'people';
protected $fillable = [
'title_id',
'name_first',
'name_middle',
'name_last',
'date_birth',
'date_death',
'bio',
'created_at',
'modified_at'
];
public function title() {
return $this->belongsTo('Title', 'title_id', 'id');
}
}
class Title extends Model {
protected $table = 'title';
protected $fillable = [
'title',
'created_at',
'modified_at'
];
public function contacts() {
return $this->hasMany('Contact', 'title_id', 'id');
}
}
在表格中我有以下内容:
<div class="form-group">
{!! Form::label('title', 'Title: ') !!}
{!! Form::select('title', $title) !!}
</div>
<div class="form-group">
{!! Form::label('name_first', 'First Name: ') !!}
{!! Form::text('name_first', null, ['class' => 'form-control']) !!}
{!! Form::label('name_middle', 'Middle Name: ') !!}
{!! Form::text('name_middle', null, ['class' => 'form-control']) !!}
{!! Form::label('name_last', 'Last Name: ') !!}
{!! Form::text('name_last', null, ['class' => 'form-control']) !!}
{!! Form::label('name_nick', 'Nickname: ') !!}
{!! Form::text('name_nick', null, ['class' => 'form-control']) !!}
</div>
我收到一条错误,说变量title
未定义。我无法确定为什么没有返回值列表。我的关系是否错误地返回?
答案 0 :(得分:0)
您没有将 $ title 变量传递给您的视图。
在ContactController的create方法中,将 $ title 变量指定给您的视图:
public function create()
{
$title = Contact::lists('title', 'id');
return view('pages.contacts.create')->with('title', $title);
}
有关更多文档,请参阅http://laravel.com/docs/5.0/views。