#1 Build a Simple Dashboard with Laravel 11, Inertia.js, Vue 3, Shadcn UI Vue, and TailwindCSS

preview_player
Показать описание

Laravel 11 Documentation
Vue 3 Documentation
ShadCN UI Vue
TailwindCSS Documentation
#Laravel #Vue3 #InertiaJS #ShadCNUI #TailwindCSS #WebDevelopment #Dashboard #fullstackdevelopment

Vue 3 and create a CRUD application, Vuejs,vue js Crud,dashboard,api vue, axios,vue Tutorial,vue 2022,working with data in vue,Tailwindcss UI
HASH TAGS:
#DevOP, #VUE , #CRUD , #VueProject
#webdev #app #development #lesson #tutorial

DEVOP's Vision :
I'm not good at English but i wish you understand my code.
Honestly, i just sharing my experience with other programming language,such as Javascript,PHP,SQL.. for educational purpose
I hope this channel can help you guys for start coding (Beginners)
I apologize for the problems in the videos but i will try to take it less.

KEYWORD:
data structures and algorithms data structures tutorial algorithms tutorial linked lists arrays hash maps hash tables java data structures course data structues java data structures programming programmer whiteboard interview cracking the coding interview java algorithms google enginee
webdev app development lesson tutorial javascript concepts to know,
javascript concepts for beginners
Рекомендации по теме
Комментарии
Автор

Nice one, next make auth with sanctum and make menu rbac 😁

wakathepublic
Автор

Sir, I am not familiar with Tailwind CSS. Could you please make it with Bootstrap or create a video showing how to integrate it with Bootstrap instead of Tailwind? ❤

YacoubCoder
Автор

What did you build ? Just copy/paste shadcn example

bled
Автор

Hello thanks for this 🙏 . How do i create multiple blade layout for different route paths please 🙏. i have tried.

I have in my HandleInertiaRequest.php
public function rootView(Request $request): string
{
if ($request->user()) {
if ($request->user()->is_admin) {
return 'admin'; // Use admin.blade.php for administrators
} elseif ($request->user()->is_seller) {
return 'seller'; // Use seller.blade.php for sellers
} else {
return 'customer'; // Use customer.blade.php for regular logged-in users
}
}

return 'layouts.frontend'; // Use frontend.blade.php for guests
}

emmanuelochubili