当我试图在 Jmeter 板页面中显示计数时出现未定义变量错误
我尝试在 Jmeter 板页面中显示工具数量的计数。但是,它显示错误:未定义变量$jumlahalat
web.php:
Route::get('/dashboard-admin', function () {
$jumlahalat = Inventory::count();
return view('dashboard-admin', compact('jumlahalat'));
});
dashboard-admin.blade.php:
<div class="grid grid-cols-4 gap-4 rounded mt-4 text-md font-bold text-[#fecbcf] w-full">
<a href="{{ url('/sda/alat') }}" class="text-white" style="text-decoration: none; color: inherit;">
<div class="bg-[#5479f7] flex gap-3 pl-5 justify-start items-center rounded-lg h-[110px]">
<div class="h-[70px] w-[70px] rounded-sm bg-white flex justify-center items-center">
<span class="material-icons text-black" style="font-size: 40px">inventory_2</span>
</div>
<div>
<div class="self-center text-start">Jumlah Alat</div>
<div class="self-center text-start">{{ $jumlahalat }}</div>
</div>
</div>
</a>
</div>
我已经在web.php中定义了use App\Models\Inventory
3条答案
按热度按时间chhqkbe11#
这也可能只是路由/视图缓存问题。尝试在项目上运行这些命令
而且
i7uq4tfw2#
如果你试着在你的 Jmeter 板上做这个计数器。然后你可以尝试我的方式……在你的控制器上。你可以简单地返回你的所有模型…
9w11ddsr3#
确保导入了正确的Inventory模型类,通常它位于
App\Models\Inventory
中尝试更改
$jumlahalat = Inventory::count()
至
$jumlahalat = Inventory::all()->count();