laravel实践8.内嵌页面
1.编辑被嵌入的页面
resources/views/shared/_info.blade.php
$user->id) }}">$user->buildImage() }}" alt="{{ $user->name }}" class="img"/>
{{ $user->name }}
{{$user->intro}}
2.主页面嵌入
resources/views/users/show.blade.php
@extends('layouts.default') @section('title', $user->name) @section('content')class="row">@stopclass="offset-md-2 col-md-8">class="col-md-12">class="offset-md-2 col-md-8">class="user_info"> @include('shared._info', ['user' => $user])
可以通过给 @include 方法传参,将用户数据以关联数组的形式传送到 _info 局部视图上。
@include('shared._info', ['user' => $user])