Files
faveo/resources/views/themes/check.blade.php
2015-05-01 13:13:01 +05:30

10 lines
342 B
PHP

{!! Form::open(['url'=>'postcheck/'.$table->agent_id , 'method' => 'post']) !!}
@while (list($key, $val) = each($teams))
<input type="checkbox" name="team_id[]" value="<?php echo $val; ?>" <?php if (in_array($val, $assign)) echo( 'checked'); ?> ><?php echo $key; ?><br/>
@endwhile
<input type="submit" value="submit">
{!!Form::close()!!}