how

Laravel; How to pull existing records on select change event using session type and date passed to dynamic web route in Laravel?

Welcome to Post, Lets learn how to do the thing in the question, assuming you have basic or advance knowledge…

1 year ago

How to build Android APK/apk from command line interface on windows/mac?

Hello, If you are looking for, to build or generate the android apk file (in your capacitor project) directly from…

1 year ago

What is forwardRef and how its helps in react?

Hello, lets quickly take a review on React forwardRef, what it in actual, In React, the forwardRef function is a…

1 year ago

How to use “where” with “pluck” in laravel?

Hello, Here is the quick solution: $categoryId = ProductCategory::where('id',$id)->pluck('categoryId')[0]; $parentId = ProductCategory::where('id',$id)->pluck('parentId')[0]; print_r($categoryId); print_r($parentId); Plucking it array index 0 as…

2 years ago

How to calculate the costing of grams from per kg weight?

For the simple question here is the simple answer: as we know 1kg = 1000 grams Formular for easy getting…

3 years ago