我遇到below
错误:
未定义变量:name_tags(查看: C:\ xampp \ htdocs \ portofolio \ resources \ views \ content.blade.php)
代码:
<?php $currentLoopData = $artikel->tags;
$env->addLoop($currentLoopData);
foreach($currentLoopData as $d):
$env->incrementLoopIndices();
$loop = $env->getLastLoop(); ?>
<small><?php echo e($d -> $name_tags); ?></small>
<?php
endforeach;
$env->popLoop();
$loop = $env->getLastLoop();
?>
我的数据库:
答案 0 :(得分:0)
使用$d->name_tags
代替$d -> $name_tags
。
您的代码应如下所示;
<?php $currentLoopData = $artikel->tags;
$env->addLoop($currentLoopData);
foreach($currentLoopData as $d):
$env->incrementLoopIndices();
$loop = $env->getLastLoop(); ?>
<small><?php echo e($d->name_tags); ?></small>
<?php
endforeach;
$env->popLoop();
$loop = $env->getLastLoop();
?>