laravel post form中的多个值(下拉列表)

时间:2017-04-10 13:24:58

标签: php laravel laravel-5

美好的一天程序员,

我一整天都很沮丧,因为我必须为一个小时注册应用程序提交一份提交表格,我必须为我实习的公司创建。

所以基本上要做的是:我已经制作了一个包含多个值的提交表单,我被要求做一个下拉选择,我可以在其中输入“公司名称”和“任务名称”的值。 (任务与公司名称相关联)。基本上我想知道的是我如何将2个值放在一个下拉菜单中。具有“$ company name - $ task name”的布局

create.blade.php

     {!! Form::open(['url' => 'hoursregistrations/create','files'=>true]) !!}

            <div class="form-group" hidden>
                {!! Form::label('user_id', 'User ID: ') !!}
                {!! Form::text('user_id', $authenticated, null, ['class' => 'form-control']) !!}
            </div>

            <select name="">
            @foreach($items as $item)
                <option value="{{ $item->id }}">
                    {{ $item->company->name }} - {{ $item->name }}
                </option>
                @endforeach
            </select>

            <div class="form-group">
                {!! Form::label('note', 'Notitie: ') !!} 
                {!! Form::text('note', null, ['class' => 'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::label('date', 'Datum: ') !!}
                {!! Form::date('date', null, ['class' => 'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::label('hours', 'Uren: (uren-minuten) ') !!}
                {!! Form::time('hours', null, ['class' => 'form-control']) !!}
            </div>



            <div class="form-group">
                <div class="col-sm-offset-2 col-sm-4">
                    <a class="btn btn-danger" href="{{ route('hoursregistrations.index') }}">
                        @lang('button.cancel')
                    </a>
                    <button type="submit" class="btn btn-success">
                        @lang('button.save')
                    </button>
                </div>
            </div>

            {!! Form::close() !!}

在此代码段中,公司变量为$ project_id,任务ID为$ subproject_id。

控制器还可以将数据重定向到创建视图

    /**
 * Show the form for creating a new resource.
 *
 * @return Response
 */
public function create()
{
    $authenticated = Sentinel::getUser()->id;
    $activity_name = Subproject::pluck('id');
    $items = array(
            'company_name' => Company::where('status','client')->pluck('company_name', 'id'),
            'subproject_id' => Subproject::pluck('title', 'id')
        );
        //dd($items);

    return view('hoursregistrations.create', compact('subproject_id', 'authenticated', 
        'company_name', 'activity_name', 'items'));
}

结论:如何将$ project_id和$ subproject_id组合成一个下拉项目。

p.s我很抱歉,如果听起来很模糊我不善于解释事情

1 个答案:

答案 0 :(得分:0)

您是否必须使用表格外观?虽然这可能对您没有帮助,但您可以使用Blade的语法将其编写为纯HTML:

<select name="">
    @foreach($tasks as $task)
        <option value="{{ $task->id }}">
            {{ $task->company->name }} - {{ $task->name }}
        </option>
    @endforeach
</select>