What view is being called? Also it might be that your view is cached, you can remove the cache by running
php artisan view:clear
Hi,
get very wierd situation,all works fine,and last time I try one link from my menu,see that routes link to wrong view.
Here is route:
Route::get('main', 'TestController@index');
In controller is this for return:
public function index(){
$pagination = Test::latest()->paginate(10);
return view('orders.index',compact('pagination'));
}
All was fine,but now,when go to
mysite/main, go to totaly diferent view?
Any idea ?
Tnx, P
Please or to participate in this conversation.