Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created August 30, 2016 03:48
Show Gist options
  • Save evercode1/5164aba1f0bb15b26a69c12a3bb2dddc to your computer and use it in GitHub Desktop.
Save evercode1/5164aba1f0bb15b26a69c12a3bb2dddc to your computer and use it in GitHub Desktop.
Chapter 10 table MarketingImage index.blade.php
<table class="table table-hover table-bordered table-striped">
<thead>
<th>Thumbnail</th>
<th>Name</th>
<th>Weight</th>
<th>Featured</th>
<th>Active</th>
<th>Date Created</th>
</thead>
<tbody>
@foreach($marketingImages as $marketingImage)
<tr>
<td><a href="/marketing-image/{{ $marketingImage->id }}"><img src="{{ $marketingImage->showImage($marketingImage, $thumbnailPath) }}"></a></td>
<td><a href="/marketing-image/{{ $marketingImage->id }}">{{ $marketingImage->image_name }}</a></td>
<td>{{ $marketingImage->image_weight }}</td>
<td>{{ $marketingImage->showFeaturedStatus($marketingImage->is_featured) }}</td>
<td>{{ $marketingImage->showActiveStatus($marketingImage->is_active)}}</td>
<td>{{ $marketingImage->created_at }}</td>
</tr>
@endforeach
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment