Page 75 - Laravel5_v1
P. 75
<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>
<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>
<td>
<?= Form::open(array('url' => 'books/' . $book->id,
'method' => 'delete')) ?>
<button type="submit" class="btn btn-danger"><i
class="fa fa-trash"></i></button>
{!! Form::close() !!}
</td>
</tr>
@endforeach
</table>
<br>
{!! $books->render() !!}
</div>
</div>
</div>
</div>
</div>
@endsection