Menu
About LCS
Projects
All snippet related to projects
Listing rows of products - crud
Step 01: Changing index() method in ProductController public function index( Request $request ) { $meta_title = 'All Products'; $query =...
Topic:
Mini Ecommerce
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...
Topic:
Mini Ecommerce
3 years ago
Editing product data - crud of products
Step 01: In ProductController, adding edit() method public function edit( Product $product ) { $meta_title = 'Edit Product ' ....
Topic:
Mini Ecommerce
3 years ago
Deleting product data - crud of products
Step 01: In ProductController, adding destroy() method public function destroy( Product $product ) { $product->delete(); $redirectTo = session()->get('submit_redirect'); if( !empty(...
Topic:
Mini Ecommerce
3 years ago
Searching, filtering and saving sequence of product data - crud of products
Step 01: Adding following changes in list.blade.php under resources/view/products for search form and filtering links // search form All Products...
Topic:
Mini Ecommerce
3 years ago
Listing rows of profiles - crud
Step 01: Changing index() method in ProfileController public function index( Request $request ) { $meta_title = 'All Profiles'; $query =...
Topic:
Mini Ecommerce
3 years ago
Adding profile data - crud of profiles
Step 01: Adding profile add button just above of table element in list of profiles All Profiles Add Profile Step...
Topic:
Mini Ecommerce
3 years ago
Editing and deleting profile data - crud of profiles
Step 01: In ProfileController, adding edit() method public function edit( Profile $profile ) { $meta_title = 'Edit Profile ' ....
Topic:
Mini Ecommerce
3 years ago
Searching and saving sequence of profile data - crud of profiles
Step 01: Adding following changes in list.blade.php under resources/view/profiles for search form // search form All Profiles Add Profile Step...
Topic:
Mini Ecommerce
3 years ago
Listing, adding, editing, deleting and saving order of frame widths - crud of frame widths
Step 01: Changing index() method in FrameWidthController public function index( ) { $meta_title = 'All Frame Widths'; $query = FrameWidth::query();...
Topic:
Mini Ecommerce
3 years ago
‹
1
2
3
4
5
6
7
8
9
10
›