<?php $__env->startSection('css_page_level'); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('page-content'); ?>
            <!-- CONTENT -->
            <div class="wrap-fluid" id="paper-bg">
                <div class="row">
                    <div class="col-lg-12">
                        <div class="box">
                            <div class="box-header">
                                <!-- tools box -->
                                <div class="pull-right box-tools">
                                </div>
                                <h3 class="box-title"><i class="fontello-doc"></i>
                                    <span>熱門節慶</span>
                                </h3>
                            </div>
                            <!-- /.box-header -->
                            <div class="box-body">

						<div class="box-body">
                                <div class="table-responsive">
                                    <table class="table table-striped table-hover">
                                        <tbody>
                                            <?php foreach($festivals as $one): ?>
                                            <tr>
                                                <td style="width:30%;">
													<?php if($one->cover_img != ''): ?>
														<a href="<?php echo e(route('website::festival_view',['id'=> $one->id])); ?>"><img alt="" src="<?php echo e($one->cover_img); ?>" width="100%"></a>
													<?php else: ?>
														<a href="<?php echo e(route('website::festival_view',['id'=> $one->id])); ?>"><img alt="" src="http://placehold.it/320x200" width="100%"></a>
													<?php endif; ?>
                                                </td>
                                                <td>
                                                    <p>
                                                        <strong style="font-size:20px;"><a href="<?php echo e(route('website::festival_view',['id'=> $one->id])); ?>"><?php echo e($one->title); ?></a></strong>
                                                        <p style="font-size:15px;"><?php echo e($one->introduce); ?></p>
                                                    </p>
                                                </td>
                                                <td width="20%" style="white-space: nowrap;">
                                                    <div class="pull-right">
                                                        <small class="pull-right"><?php echo e($one->created_at); ?>

                                                        </small>
                                                    </div>
                                                </td>
                                            </tr>

                                            <?php endforeach; ?>
                                            <?php if($festivals->count() == 0): ?>
                                            <div class="row">
                                                <div class="col-md-12">
                                                    <div class="alert alert-warning" style="margin:20px;">
                                                        <button data-dismiss="alert" class="close" type="button">×</button>
                                                        <span class="entypo-cancel-circled"></span>
                                                        <strong>很抱歉!</strong>&nbsp;&nbsp;目前尚未有熱門節慶。
                                                    </div>
                                                </div>
                                            </div>
                                            <?php endif; ?>
                                        </tbody>
                                    </table>
                                    <?php echo $festivals->render(); ?>

                                </div>
								
                        <!-- /.box -->
                    </div>
					
							</div>
						</div>
					</div>
				</div>
            </div>
            <!-- #/paper bg -->
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layout.front', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>