My route file
Route::model('rank', 'Rank');
Route::resource('rank', 'AdminRankController');
My Controller file
public function show($rank)
{
return $rank;
}
This give me error Symfony \ Component \ Debug \ Exception \ FatalErrorException Maximum function nesting level of '100' reached, aborting!
Any Help will be appreciated . Earlier It was working . But My composer update ruined all.
Please note if I change it like
Route::model('ranks', 'Rank');
It is working but no database query runs to fetch the corresponding row