我有一个视图,我想显示数据库中的记录
但他告诉我这个错误:
6361DDA302A0F162671EE5B36A4BE93第26行中的FatalErrorException:语法错误,意外的“endif”(T_endif)
欢迎刀身php:
@extends('layouts.master')
@section('title')
Welcom!
@endsection
@section('content')
<div class="container">
<div class="row">
<legend>List</legend>
<table class="table table-striped table-hover ">
<thead>
<tr>
<th>ID</th>
<th>lastaname</th>
<th>firstname</th>
<th>phone</th>
</tr>
</thead>
<tbody>
@if (count($customers) > 0 )
@foreach($customers->all() as $customer)
<tr>
<td>{{ $customer->id }}</td>
<td>{{ $customer->lastaname }}</td>
<td>{{ $customer->firstname }}</td>
<td>{{ $customer->phone }}</td>
</tr>
@enforeach
@endif
</tbody>
</table>
</div>
</div>
@endsection
CreatesController:
<?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Customer;
class CreatesController extends Controller {
public function welcome()
{
$customers = Customer::all();
return view('welcome', ['customers' => $customers]);
}
您需要使用@endforeach
而不是@enforeach
https://laravel.com/docs/5.5/blade#loops
Laravel希望您首先关闭@foreach
,这就是它抛出异常的原因。
我发现php endif出现错误,找不到错误。这里我给出了我的代码。请帮我修一下
我试图用以下方式简写Laravel blade文件中HTML标记内的if语句: 但是它得到了这个错误。我研究了类似的问题并尝试了解决方案,但仍然得到了同样的错误。有什么建议吗?提前感谢。 编辑:复选框组件
这段代码用于显示相关文章,并驻留在我的includes文件夹中。 我最近从Mac上的本地开发环境(使用MAMP)切换到使用Windows和WAMP。 突然,这个错误发生在这段代码中。它不会发生在我的本地Mac环境中,也不会在现场测试时发生。 分析错误:语法错误,意外的“endif”(T_endif) 该错误特别指向倒数第二个。如果我删除它,将抛出相同的错误,指向代码中的最后一个。 有什么想法吗?我
已解决:短开标签已关闭,这就是问题所在。现在打开它,一切都正常了! 我现在正在制作一个主题,这是真的。我不明白为什么代码不起作用。我读过一些类似的话题,但它们无助于解决我的问题: 分析错误:语法错误,C:\xampp\htdocs\wp\wp content\themes\boxtruyen\single ngan中出现意外的“endif”(T_endif)。php在线105 请帮助,我无法找出错
我使用过谷歌定制搜索引擎,并使用了他们在我的网站上提供的代码。 我有这个问题在(search.php),我不能放置 如何在搜索中添加该endif。php文件?
我一直在为我的worpress网站脱机处理这个代码错误。 请帮帮我.