Some useful Woocommerce Settings

Posted on: Saturday July 15, 2023

Write code in function.php Removing Storefront inline css [crayon-671ce47f65992530701792/] Disable plugin & Theme updates [crayon-671ce47f6599d656464159/] Hide dashboard update notifications for [...]

Read More

Controller in Laravel

Posted on: Wednesday March 29, 2023

Create controller file ‘app/Http/Controllers/ProductController.php‘ and paste the given code below [crayon-671ce47f67f39154002359/] public function index() and public function detail($id) [...]

Read More

Route in Laravel

Posted on: Wednesday March 29, 2023

In the Laravel route there are 2 ways: Direct load view file from the route, No need to go to controller. Go to the Controller and perform the operation then load the view file. [...]

Read More

Remove public from url in Laravel

Posted on: Saturday March 25, 2023

STEP 1 : Check root folder for  server.php, if there is no any server.php just create one with given code below: [crayon-671ce47f68c5b968216739/]     STEP 2: If you want to remove public [...]

Read More

Start with Laravel

Posted on: Saturday March 25, 2023

Introduction and requirements for laravel. For starting the project on laravel we need 3 things to be installed in our system. Composer Use E:\xampp8\php\php.exeforcomposer PHP path. Node and NPM. if [...]

Read More

Multi time store data in PHP session

Posted on: Wednesday March 22, 2023

Store multiple data in a session, you can store multiple times data in a PHP session without destroying previous session data. Please find PHP method below: [crayon-671ce47f69a9d052935531/] [...]

Read More