lundi 25 juillet 2016

Laravel form submit showing MethodNotAllowedHttpException in RouteCollection.php line 218:

This is my route

Route::resource('admin/reports', 'ReportController');

This is controller function

public function store(Request $request)
{
    return "Thank you";
}

This is my html code

{!! Form::open([ 'url' => 'admin/reports/store', 'files' => true, 'enctype' => 'multipart/form-data', 'class' => 'dropzone', 'id' => 'reportfile' ]) !!}
    {!! csrf_field() !!}
    <div class="col-md-12">
        <h3 style="text-align : center">Select File</h3>
    </div>

    <div class="col-md-12" style="text-align: center; padding: 10px">
        <button type="submit" class="btn btn-primary">Upload Report</button>

    </div>
    {!! Form::close() !!}

When I submit the form, it show me MethodNotAllowedHttpException in RouteCollection.php line 218:

Any help is much appreciated. Thanks



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire