laravel - phpstorm如何支持illuminate/html语法提示
怪我咯
怪我咯 2017-04-10 18:03:16
0
1
286

1 比如敲如了Form 后面会提示Form的方法,还有参数提示

 {!! Form::open(['url' => 'articles']) !!}

2 另外,问下laravel模板中如何引入css、js文件【已找到办法】

<link href="{{URL::asset('/root/css/bootstrap.min.css')}}" rel="stylesheet" type="text/css">
<script src="{{URL::asset('/root/js/jquery.min.js')}}" type="text/javascript"></script>
<script src="{{URL::asset('/root/js/bootstrap.min.js')}}" type="text/javascript"></script>

3 laravel中在blade模板文件中这样写为什么会报错

@section('content')
    <?php
        foreach ($articles as $a){?>
            <p class="form-group">
                {!! Form::label('title','Title') !!}
                {!! Form::text('title',$a->title,['class' => 'form-control']) !!}
            </p>
        <?php}
    ?>
@stop
怪我咯
怪我咯

走同样的路,发现不同的人生

Antworte allen(1)
刘奇

装个插件laravel-ide-helper

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!