douguai4653 2017-12-31 06:23
浏览 48
已采纳

Sage 9视图中是否提供Laravel Blade $循环变量?

I'm experimenting with version 9 of the Sage WordPress starter theme which uses Laravel Blade as the template engine for constructing WP templates.

My question is: Does Sage 9 make Blade's $loop variable available inside of loops in views?

For example, given the file /my_theme/resources/views/archive.blade.php:

1    @extends('layouts.app')
2
3    @section('content')
4      @include('partials.page-header')
5
6      @if (!have_posts())
7        <div class="alert alert-warning">
8          {{ __('Sorry, no results were found.', 'sage') }}
9        </div>
10        {!! get_search_form(false) !!}
11     @endif
12
13      @while (have_posts()) @php(the_post())
14
15      @include('partials.content-'.get_post_type())
16      @endwhile
17
18      {!! get_the_posts_navigation() !!}
19    @endsection

I would like to insert the following at line 14:

@if ($loop->first)
    // Do stuff on first iteration
@endif

However $loop is undefined.

Am I missing something or is this a limitation of Sage 9 at this time?

  • 写回答

1条回答 默认 最新

  • douxunwei7083 2017-12-31 07:00
    关注

    $loop variable will be available inside of @foreach() loops

    @foreach ($users as $user)
        @if ($loop->first)
           // This is the first iteration.
        @endif
    @endforeach
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?