ErrorException(E_ERROR)未定义的变量:buildingSections

时间:2018-06-20 15:06:46

标签: mysql laravel compiler-errors

我试图从页面存储到数据库中,我传递了一个变量,该变量使用@foreach可以很好地显示,而没有上述错误,但是当要保存它时,它给出了以上错误。 这是控制器

$this->validate($request, array(
        'building_section' => 'required',
        'reported_date' => 'required',
        'fault' => 'required',
    ));
    $maintenance = New Maintenance();
    $maintenance->tenants_id = AssetTenant::where('tenant_id', '=', \Auth::user()->id)->first();
    $maintenance->category = AssetTenant::where('description', '=', $maintenance->tenants_id);
    $maintenance->building_section = $request->building_section;
    $maintenance->reported_date = $request->reported_date;
    $maintenance->fault = $request->fault;
    //Flash Message
    $request->session()->flash('success', 'Tenant successfully Added');
    //redirect
    return view('/tenant/addMaintenance');

视图

<select type="text" class="form-control" name="building_section" required="">
                            @foreach($buildingSections as $section)
                                <option >{{ $section->section }}</option>
                            @endforeach
                        </select>

注意:此代码在其他部分中效果很好。

我想念什么?

1 个答案:

答案 0 :(得分:0)

我想这是因为您要返回视图而不是重定向到该页面:

更改:

return view('/tenant/addMaintenance');

收件人:

return redirect('tenant/addMaintenance');