Menu
About LCS
Mini Ecommerce
Tips and posts related to ecommerce
Redirecting to product list or order list page after login based on role
For this project we consider two types of user - admin and customer. Their roles are assigned as 1 and...
Category:
Projects
3 years ago
Adding all menus with their matching routes
From previous post now its time to add menus in our layout. But before that we need to create Profile...
Category:
Projects
3 years ago
Protecting all menus based on admin or customer role
Step 01: Changing in app.blade.php like following @if(auth()->user()->role_id == 1) {{ __('Users') }} {{ __('Products') }} {{ __('Profile') }} {{...
Category:
Projects
3 years ago
Listing rows of users - crud
Step 01: Adding jQuery with npm npm i jquery Step 02: Using bootstrap 5 icons //Installing bootstrap 5 icons with...
Category:
Projects
3 years ago
Adding user data - crud of users
Step 01: Adding user add button just above of table element in list of users All Users Add User Step...
Category:
Projects
3 years ago
Editing user data - crud of users
Step 01: In UserController, adding edit() method public function edit( User $user ) { $meta_title = 'Edit User ' ....
Category:
Projects
3 years ago
Deleting user data - crud of users
Step 01: In UserController, adding destroy() method public function destroy( User $user ) { $user->delete(); return redirect()->route( 'users.index' )->with( 'success',...
Category:
Projects
3 years ago
Searching user data - crud of users
Step 01: Adding search form just above table element in list.blade.php under resources/view/users All Users Add User Step 02: Then,...
Category:
Projects
3 years ago
Listing rows of products - crud
Step 01: Changing index() method in ProductController public function index( Request $request ) { $meta_title = 'All Products'; $query =...
Category:
Projects
3 years ago
Adding product data - crud of products
Step 01: Adding product add button just above of table element in list of products All Products Add Product Step...
Category:
Projects
3 years ago
‹
1
2
3
4
›