I was upgrading from v1.1.10 to v1.2.6 and now the page is not loading (the wheel spins forever).
Steps to reproduce the behavior:
public/vendor/tcg/voyger folderassets_pathfrom config/voyger.phpphp artisan voyager:controllersApp/Http/Controllers/Voyager/VoyagerController.php public function index()
{
return view('admin.index');
}
@extends ('voyager::master')
@section('content')
Hallo
@endsection
Render page in finite time.
This is how it looks when I open http://member-nlp.test/admin. There is no menu loaded or anything, just a wheel spinning:

This is the shown by the inspector, showing that js/app.js could not be loaded (i have not mentioned that file in config/voyager.php:

When I change the index method in App/Http/Controllers/Voyager/VoyagerController.php like this:
public function index()
{
return 1;
}
Then http://member-nlp.test/admin will return sucessfuly 1.
The path to the assets contains %3Fv%3D2 which translates to ?v=2 which the controller can't find.
Where does it come from?
Oh true, I forgot that I overwrote the master.blade by /resource/views/vendor/voyager/master.blade. Removed the ?v=2 and now its working. Thanks a lot!!!
This issue has been automatically locked since there has not been any recent activity after it was closed. If you have further questions please ask in our Slack group.
Most helpful comment
The path to the assets contains
%3Fv%3D2which translates to?v=2which the controller can't find.Where does it come from?