Page 51 - Laravel5_v1
P. 51

<th>รหัส</th>
                                                        ื
                                             <th>ชอหนังสือ</th>
                                             <th>ราคา</th>
                                             <th>หมวดหนังสือ</th>
                                                        ู
                                             <th>รปภาพ</th>
                                         </tr>
                                         @foreach ($books as $book)
                                         <tr>
                                             <td>{{   $book->id   }}</td>
                                             <td>{{   $book->title }}</td>
                                             <td>{{   number_format($book->price,2)   }}</td>
                                             <td>{{   $book->typebooks->name   }}</td>
                                             <td>
                                                 <a href="{{ asset('images/'.$book->image)
                 }}"><img src="{{ asset('images/'.$book->image) }}"></a>
                                             </td>
                                         </tr>
                                         @endforeach
                                     </table>
                                     <br>
                                     {!!  $books->render()   !!}



                                 </div>
                             </div>
                         </div>
                     </div>
                 </div>
                 @endsection

                                        ์
                                                                              ้
             9.  สรางเมนู หนังสือ เพิ ม เปดไฟล resources\views\layouts\app.blade.php เขียนโคด ดังนี
                                   ิ
                  ้
   46   47   48   49   50   51   52   53   54   55   56