Created
August 30, 2016 03:48
-
-
Save evercode1/5164aba1f0bb15b26a69c12a3bb2dddc to your computer and use it in GitHub Desktop.
Chapter 10 table MarketingImage index.blade.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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