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.2k stars 413 forks source link

How to install with Laravel Inertia Stack?? #7

Closed bhaviljain68 closed 2 years ago

bhaviljain68 commented 2 years ago

Hi, I'm sry if this is a noob question.

I've just got into the Laravel Inertia Stack. I'm trying to create a template which I can use in my future projects.

I want to install the admin-one dashboard into my project now. Can someone please help?

vikdiesel commented 2 years ago

Hi, we've developed a guide on how to integrate this dashboard with Laravel 9.x Jetstream Inertia + Vue.js stack.

https://github.com/justboil/admin-one-vue-tailwind/tree/master/.laravel-guide

cristophermr commented 2 years ago

That tutorial is obsolete, now Laravel uses Vite instead of Webpack

vikdiesel commented 2 years ago

We'll post an updated version shortly

On Tue, Jul 19, 2022, 9:53 PM Cristopher Morales @.***> wrote:

That tutorial is obsolete, now Laravel uses Vite instead of Webpack

— Reply to this email directly, view it on GitHub https://github.com/justboil/admin-one-vue-tailwind/issues/7#issuecomment-1189329778, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAOKMCLR4FUSAAO4BLLGNNDVU3MPXANCNFSM5RHNGUPA . You are receiving this because you commented.Message ID: @.***>

vikdiesel commented 2 years ago

Laravel guide is updated

bhaviljain68 commented 2 years ago

Laravel guide is updated

HI @vikdiesel ,

Thank you for the guide, but I'm getting an error Error: Ziggy error: route '/profile' is not in the route list.

even though I've added it to the rout list in web.php

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

Can you help please?