我的页面如下:
@foreach
//create a div here
//and the div needs to use the outside function like
<input value="{{ showText }}"> // there is a form as well
// and the foreach ends.
@endforeach
<?php
//and the function is here.
function showText(){
//connect to database
//get the required information
//return the information
}
现在,showText()
函数返回一个id,用于更新数据库中的信息。
但是,由于@foreach
,showText()函数不返回任何内容,Laravel显示id不能为null或类似的错误。当我前段时间使用PHP做同样的事情时,我可以做类似的事情:
<?php
for(){
?>
<div> Get the data through AJAX </div>
<?php
}
那么,我如何使用laravel做同样的事情?