Laravel]Laravell部分テンプレート@include
4180 ワード
部分テンプレート@include
実習コード
@includeのブレードファイル
resources/views/posts/partials/post.blade.php
partialsに
@if ($loop->even)
<div>{{ $key }}.{{ $post['title'] }}</div>
@else
<div style="background-color: silver">{{ $key }}.{{ $post['title'] }}</div>
@endif
@include受信ブレードファイル
resources/views/posts/index.blade.php
@extends('layouts.app')
@section('title', ' Blog Posts')
@section('content')
@forelse ($posts as $key => $post)
@include('posts.partials.post')
@empty
No posts found!
@endforelse
@endsection
結果
Reference
この問題について(Laravel]Laravell部分テンプレート@include), 我々は、より多くの情報をここで見つけました https://velog.io/@bin612/Laravel-Laravel-부분-템플릿-includeテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol