@fylzero Thanks for your reply.
The below code is giving some other error. I have around 15 model and controller.
I am always having the same problem when I use the one model for two different controller. I know that will not be the problem but I dont know why.
Route::resource('/foh/pending', 'Foh\PendingController');
Route List Full
Route::resource('/foh/booking', 'Foh\BookingController', ['as'=>'foh'])->middleware('auth');
Route::resource('/foh/bookinghistory', 'Foh\BookinghistoryController', ['as'=>'foh']);
Route::resource('/foh/addon', 'Foh\AddonController', ['as'=>'foh']);
Route::resource('/foh/pending', 'Foh\PendingController', ['as'=>'foh']);
Any other option to resolve?
Thank you