Skip to content

Instantly share code, notes, and snippets.

@danilosantosdev
Last active August 29, 2015 14:08

Revisions

  1. danilosantosdev revised this gist Oct 29, 2014. 1 changed file with 6 additions and 6 deletions.
    12 changes: 6 additions & 6 deletions Select
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    echo Form::select('classroom',
    array(
    'Turmas' => $classrooms,
    'Alunos' => $students,
    )
    );
    {{Form::select('classroom',
    array('Alunos' => $students, 'Turmas' => $classrooms), 'null',
    array('id'=>'classroom', 'class'=>'form-control chosen-select', 'multiple'=>'true',
    'data-placeholder'=>trans('words.select') .'...')
    )
    }}
  2. danilosantosdev created this gist Oct 29, 2014.
    6 changes: 6 additions & 0 deletions Select
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    echo Form::select('classroom',
    array(
    'Turmas' => $classrooms,
    'Alunos' => $students,
    )
    );