我想从项目控制器中的数据库填充一个带clients
的选择框,因为项目属于client
但它也属于登录的用户。
我想创建一个如下所示的选择框:
<select>
<option value="$client->client_id">$client->client_name</option>
<option value="$client->client_id">$client->client_name</option>
</select>
我在laravel中使用客户端名称填充我的选择字段但是value
属性具有客户端名称,我希望它具有client_id。
我这样做的方式如下:
ProjectController.php
public function create()
{
//find logged in users clients
$clients = Auth::user()->clients;
$client_selector = array();
foreach($clients as $client) {
$client_selector[$client->client_name] = $client->client_name;
}
// load the create form (app/views/projects/create.blade.php)
return View::make('projects.create', array('client_selector' => $client_selector));
}
create.blade.php
{{ Form::open(array('action' => 'ProjectController@store', 'id' => 'createproject')) }}
<div class="form-group">
@if(count($client_selector)>0)
{{ Form::label('select_client', 'Select Client', array('class' => 'awesome')); }}
<!-- SELECT IS CREATED HERE -->
{{Form::select('client', $client_selector, array_values($client_selector)[0])}}
@endif
</div>
<div class="form-group">
{{ Form::label('project_name', 'Project Name') }}
{{ Form::text('project_name', Input::old('project_name'), array('class' => 'form-control')) }}
</div>
从正在创建select的方式中可以看出,它使用client_name来填充values属性,而且我不是Laravel的专家,所以我不确定如何更改这些属性。
如果有任何可能告诉我这是如何做到的或有更好的方法来实现这一点,那么请给我一些例子!
提前致谢。
答案 0 :(得分:25)
找到了一种方法
ClientController.php
public function create() {
// queries the clients db table, orders by client_name and lists client_name and id
$client_optons = DB::table('clients')->orderBy('client_name', 'asc')->lists('client_name','id');
return View::make('projects.create', array('client_options' => $client_options));
}
create.blade.php
// this form is now populated with the value as id and the option names as the client_name
{{ Form::select('clients', $client_options , Input::old('clients')) }}
希望这有助于其他人遇到这样的问题。
答案 1 :(得分:4)
我也考虑过这一点并提出以下建议:
在我的模特中:
public function scopeSelect($query, $title = 'Select') {
$selectVals[''] = $title;
$selectVals += $this->lists('name', 'id');
return $selectVals;
}
然后我可以把它放在我的观点中:
{{ Form::select('select_id', Model::Select('Blank option'), '', array()) }}
答案 2 :(得分:1)
您可以在此处使用列表方法。在您的客户端控制器中执行
$clients = Client::lists('name', 'id');
在视图中,只需使用变量like,
{{Form::select('client', $clients)}}