乾太 ₍₍ ◝(・◡・)◟ ⁾⁾ says to YSITD
如何在 Laravel blade 模板當中使用 for 迴圈? ``` <table class="table table-hover m-0"> <thead class="thead-darty"> <tr> <th>客戶編號</th> <th>客戶姓名</th> <th>客戶電話</th> </tr> </thead> <tbody> <?php foreach ($customers as $customer){ ?> <tr> <td><?php echo $customer->Cusid; ?></td> <td><?php echo $customer->Name; ?></td> <td><?php echo $customer->Phone; ?></td> </tr> <?php } ?> </tbody> </table> ```