<?php $__env->startSection('title'); ?>
    Questions|Golars Networks
<?php $__env->stopSection(); ?>
<?php $__env->startSection('main'); ?>

 

<div class="bdmdiv">
	 
    <h1 class="name_hed">All Questions</h1>
    <div class="brdcom">
    	<ul>
            <li><a href="<?php echo URL::to('/');; ?>">Home</a></li>
            <li>Questions List</li> 
        </ul>
    </div>
</div>

<div>
	<?php echo Form::open(array('id' => 'categoryList')); ?>
		<ul class="create_roll dpdwn">
			<li>
				<?php echo Form::label('select_category', 'Category:'); ?>
				<?php echo Form::select('select_category', $categories, '', array("id" => "selected_category") ); ?>
			</li>
		</ul>
	<?php echo Form::close(); ?>
</div>
 
<?php if ($addp == '1'): ?> 
<p class="add_new_but" id="createNewQuestion"><?php echo link_to_route('questions.create', 'Add new Question'); ?></p>
<?php endif; ?>

	<table class="table table-striped table-bordered table-hover" id="datatables">
		<thead>
			<tr> 
				<th style="width:70%">Question</th>  
				<th style="width:30%">Created date</th> 
			</tr>
		</thead>

		<tbody></tbody>
	</table>

	<?php if ($scripts = 'js/questions/list_questions.js'): ?> <?php endif; ?>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.scaffold', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>