有没有人知道这个错误:
Property [id] does not exist on this collection instance. (View: D:\projet7899\laravel-only-school-managemnt\resources\views\backend\payment\edit.blade.php)支付/edit.blade.php
<div class="table w-full mt-8 bg-white rounded">
<form action="{{ route('payment.update',$payment->id) }}" method="POST" class="w-full max-w-xl px-6 py-12">
@csrf有谁有主意吗?提前感谢
发布于 2021-06-30 07:06:54
仔细检查您的控制器是否返回$payment的模型实例,而不是集合。例如,使用->first()而不是->get()。
https://stackoverflow.com/questions/68186520
复制相似问题