<body>
<!-- <h2>{{$student[0]['xingming']}}</h2> -->
<table border="1" cellpadding="0" cellspacing="2" width="50%" align="center">
<tr>
<th>编号</th>
<th>学号</th>
<th>姓名</th>
<th>专业</th>
<th>班级</th>
<th>性别</th>
</tr>
<!-- @for ($i = 0; $i < 100; $i++)
<th>{{ $i }}</th>
@endfor -->
<?php
$i=0;
?>
@foreach($student as $item)
<tr>
<th>{{$i++}}</th>
<th>{{$item['xh']}}</th>
<th>{{$item['xingming']}}</th>
<th>{{$item['zhuanye']}}</th>
<th>{{$item['banji']}}</th>
<th>{{$item['xingbie']}}</th>
</tr>
@endforeach
</body>
public function index()
{
$student=$this->stu;
return view('hello',compact('student'));
}
|