0
我在刀片模板中定義了變量,但它不起作用。我沒有得到任何價值。該列是空白的。聲明刀片模板中的變量
<thead style='background-color:silver'><tr><td>S.N.</td><td>Name</td><td>Telephone No.</td><td>Mobile No.</td><td width="24%">Options</td></tr></thead>
<?php $i=1;?>
@foreach ($lists as $li)
<tr><td><?php $i++;?></td><td>{{$li->Name}}</td><td>{{$li->Telephone}}</td><td>{{$li->mobile}}</td>
<td><a href="{{url("/telephone/show/{$li->id}")}}"><button>View details</button></a>
<a href="{{url("/telephone/edit/{$li->id}")}}"><button>Edit</button></a>
<a href="{{url("/telephone/delete/{$li->id}")}}"><button>Delete</button></a></td></tr>
@endforeach
{!! $lists->render() !!}
什麼是錯我的嗎?看起來相似。該列中沒有顯示任何內容。 – micky
@micky,你說在Blade模板中聲明變量不起作用。我把你的代碼,測試它,並說它的工作原理。我發佈了測試代碼。 –
哦。謝謝。我剛剛宣佈,忘了打印。 – micky