Laravel -- Blade模板

Posted yuexinyuya

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel -- Blade模板相关的知识,希望对你有一定的参考价值。

{{--流程控制--}}
@if($name == ‘1‘)
  this is 1
@elseif($name == ‘2‘)
  this.is 2
@else
  who am i?
@endif

@foreach($students as $student)
    {{ $student->name }}
@endforeach
{{--若有值则循环,没有就打印null--}}
@forelse($students as $student)
    {{ $student->name }}
@empty
    null
@endforelse

{{--判断变量是否在数组内,返回布尔值--}}
{{ in_array($name,$arr) }}
{{--if的取反--}}
@unless($name != ‘sen‘)
    hello
@endunless
{{--url()函数用来指定url路径,route()用别名来指定url路径--}}

<a href="{{ url(‘/user/index‘) }}">url</a>

<a href="{{ route(‘user‘) }}">route</a>

 






以上是关于Laravel -- Blade模板的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 5.1 Blade模板引擎

如何在 Laravel Blade 模板中编写 PHP 代码?

laravel Blade 模板引擎

Laravel 中的 Blade 模板与普通 php

PHP笔记-laravel中Blade模板引擎的使用

Laravel Blade 模板引擎会影响性能吗?