2015-10-18 49 views
0

我有這種形式的觀點:正確使用4.2

{{ Form::open(array('action' => '[email protected]')) }} 
    <span><strong>Select School Year & Quarter</strong></span> 

    <div class="form-group"> 
     {{ Form::select('sy', [null=> 'Select School Year'] + $schoolYearID , Input::old('modules'), array('class'=>'form-control')) }} 
    </div> 

    <div class="form-group"> 
     {{ Form::select('sq', [null=> 'Select Quarter'] + $schoolQuarterID , Input::old('modules'), array('class'=>'form-control')) }} 
    </div> 
    {{ Form::submit('Sort', array('class' => 'btn btn-primary')) }} 
{{ Form::close() }} 

我這條路是

Route::get('sortsRec', '[email protected]'); 

當我點擊提交按鈕,它給出了一個方法,不允許exception.i認爲表單發送一個post方法,但路由接受get。我如何解決這個問題?任何想法我可以做什麼?

回答

1

默認情況下,將採用POST方法;但是,您可以自由指定另一種方法:

{{ Form::open(['method' => 'get', 'action' => 'StudentrecordController[email protected]']) }} 

the docs

+0

非常感謝!讚賞:) – BourneShady