Laravel vuejs vuex project | Complete crud application [ Explained with Examples ] 2022

preview_player
Показать описание
So in this video we are going to create a complete employee management application using laravel, vuejs and vuex . For this we will use Laravel 8 along with Vuejs and Vuex.

you can follow along and create a project in laravel, vuejs and vuex.

Test Your PHP Knowledge (Php Interview Questions With Solutions):

Important Links For Video:

Videos you might like:

Playlists you might like:

ZarxBiz Offers

You can try our Latest free Web applications:

Support Us:

Subscribe To Support
Рекомендации по теме
Комментарии
Автор

For the search query just add "id" in your select $query if not your other functions will not work :) Hope this helps.. Thank you @Zarx

public function getEmployeeData(Request $request)
{
try
{
$query = Employee::select('id', 'name', 'department', 'section', 'email');

if($request->searchQuery)
{
$query->where(function($q) use ($request) {
$q->orWhere('name', 'like',
});
};

$employeeData = $query->get();

return $employeeData;

}
catch(Exception $e)
{
dd($e);
}
}

kodemnky
Автор

If we want to do work with sanctum then php artisan ui vue --auth is working or not ?

AliHaidar-zwjx
Автор

app.js:22635 Uncaught TypeError: Cannot read properties of undefined (reading 'component')

ahsanhanif
Автор

I'm getting an error in actions.js when I compile right around where you implement the loader --- Error: Can't resolve 'vue/types/umd' in '...\store', any advice?

brandonthompson
Автор

npm add @vue/compiler-sfc -D``` and then ``` npm remove vue-template-complier``` and you should be good to go

marcosgonzales