justboil / admin-one-vue-tailwind

Free Vue.js 3.x Tailwind 3.x admin dashboard template with dark mode. Vite builds. Pinia state. Laravel integration available
https://justboil.github.io/admin-one-vue-tailwind/
MIT License
2.14k stars 402 forks source link

no content in dashboard #40

Open davisharry opened 1 year ago

davisharry commented 1 year ago

After I follow the laravel guide, it work with the login page, register page. But after the registration, nothing shows up in the /dashboard, and no errors, no logs.

DiegoAlonso27 commented 11 months ago

have you seen if you have named the file as home view in the routes?

guide:

Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () { return Inertia::render('Home'); })->name('dashboard');

as it should be:

Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () { return Inertia::render('HomeView'); })->name('dashboard');