Page 69 - Laravel5_v1
P. 69

<div class="panel panel-default">
                                                                                 ํ
                                                                         ้
                                 <div class="panel-heading">แสดงขอมูลหนังสือ จานวนทั งหมด {{   $books-
                 >total()   }} เล่ม</div>
                                 <div class="panel-body">

                                     <table class="table table-striped">
                                         <tr>
                                             <th>รหัส</th>
                                                        ื
                                             <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/resize/'.$book->image) }}"></a>
                                             </td>
                                             <td><a href="{{ url('/books/'.$book->id.'/edit')
                 }}"><i class="fa fa-pencil"></i></a></td>
                                         </tr>
                                         @endforeach
                                     </table>
                                     <br>
                                     {!!  $books->render()   !!}



                                 </div>
                             </div>
                         </div>
                     </div>
                 </div>
                 @endsection
   64   65   66   67   68   69   70   71   72   73   74