Laravel 5.2 Missing required parameters for [Route: user.profile] [URI: user/{nickname}/profile]

前端 未结 3 1619
花落未央
花落未央 2020-12-01 09:56

I keep getting this error

ErrorException in UrlGenerationException.php line 17:

When ever any page loads and I\'m logged in.

Here

3条回答
  •  生来不讨喜
    2020-12-01 10:21

    My Solution in laravel 5.2

    {{ Form::open(['route' => ['votes.submit', $video->id],  'method' => 'POST']) }}
        
    {{ Form::close() }}
    

    My Routes File (under middleware)

    Route::post('votar/{id}', [
        'as' => 'votes.submit',
        'uses' => 'VotesController@submit'
    ]);
    
    Route::delete('votar/{id}', [
        'as' => 'votes.destroy',
        'uses' => 'VotesController@destroy'
    ]);
    

提交回复
热议问题