我有3个laravel select下拉菜单,我要根据以上选择过滤每个
这是我的代码
{!!Form::label('Exam', 'exam') !!}
{{ Form::select('exam', $exam, null, ['class'=>'form-control']) }}
{!!Form::label('Standard', 'standard') !!}
{{ Form::select('standard', $standard, null, ['class'=>'form-control']) }}
{!!Form::label('Student', 'student') !!}
{{ Form::select('student', $student ,null, ['class'=>'form-control']) }}