在Laravel中,Blade是一种简单而强大的模板引擎,用于在视图中编写PHP代码。以下是如何使用Blade模板引擎的一些基本用法:
Hello, {{ $name }}
@if($user->isAdmin)
<p>Welcome Admin</p>
@else
<p>Welcome User</p>
@endif
@foreach($users as $user)
<p>{{ $user->name }}</p>
@endforeach
@include('partials.header')
@extends
指令来继承一个布局文件,并使用@section
指令定义子视图内容:@extends('layouts.app')
@section('content')
<p>This is the content of the page.</p>
@endsection
以上是一些基本的Blade模板引擎用法,您可以根据需要查阅Laravel官方文档了解更多高级用法。