这是我的welcome.blade.php
@extends('layouts.app')
@section('content')
<x-frontpage></x-frontpage>
@endsection
这是我的frontpage.blade.php
<h1 class="text-center">{{ $product->name }}</h1>
这是我的错误
$product is not passed to welcome.blade.php
这是我的welcome.blade.php
@extends('layouts.app')
@section('content')
<x-frontpage></x-frontpage>
@endsection
这是我的frontpage.blade.php
<h1 class="text-center">{{ $product->name }}</h1>
这是我的错误
$product is not passed to welcome.blade.php
您应该在x-frontpage
刀片组件中添加一个道具,否则它将无法接收它。
这是一个例子:
<!-- frontpage.blade.php -->
@props(['product'])
<h1 class="text-center">{{ $product->name }}</h1>
<!-- welcome.blade.php -->
@extends('layouts.app')
@section('content')
<x-frontpage :product="$product"></x-frontpage>
@endsection
还要确保你welcome.blade.php
有$product
变量。
这里有更多资源:
https://laravel.com/docs/7.x/blade
https://laravel-livewire.com/docs/rendering-components#render-method