laravel5查看有一个starnge错误

时间:2017-01-31 23:13:22

标签: php laravel view

我有这个观点,当我要求它时,它会向我显示一个奇怪的错误,我想这对我来说很奇怪。 我的create.blade.php

@extends('layouts.app')
@section('content')
    <div class="col-md-6">
        {!! Form::open([action('PropertiesController@update', $property->id), 'files'=>true]) !!}
            <div class="form-group">
                {!! From::label('category', 'category') !!}
                {!! Form::select('category', {{ $categories }},['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::label('city', 'located city') !!}
                {!! Form::select('city', {{ $citys }},['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::label('street', 'Street adress: ') !!}
                {!! Form::text('street', 'Adress', ['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::file('images') !!}
            </div>
            <div class="form-group">
                {!! Form::label('description', 'Add description') !!}
                {!! Form::textarea('description', null, ['class'=>'form-control']) !!}
            </div>

            <div class="form-group">
                {!! Form::submit('Done', ['class'=>'btn btn-primary']) !!}
            </div>
        {!! Form::close() !!}
    </div>

@stop

错误是:

  

83c90d4b665ecd8385b3b6b2e7203d1ef06a1339.php第8行中的ErrorException:   解析错误:语法错误,意外&#39;&lt;&#39; (视图:   /home/vagrant/Code/housing/resources/views/properties/create_property.blade.php)

请帮忙卡住:(

1 个答案:

答案 0 :(得分:1)

您正尝试在刀片语法中使用刀片语法,这是您不需要做的。

{!! Form::select('category', {{ $categories }},['class'=>'form-control']) !!}

它可以简单地

{!! Form::select('category', $categories, ['class'=>'form-control']) !!}

您已在多个地点完成此操作,因此请务必将其全部修复。您会注意到错误提到第8行,即此错误发生后的行。