Posts by Author : tgugnani

If you are using Laravel Dusk and getting the following issue in running your dusk tests. Facebook\WebDriver\Exception\WebDriverCurlException: Curl error thrown for http POST to /session with param...
Read Article
Here is how you can get access to the Faker Instance in the Artisan tinker $faker = Faker\Factory::create(); That' it. That's the post.
Read Article
This is a quick article on how you can remove a composer dependency from the Laravel project. Open the terminal / command-prompt and navigate to the project root directory and execute the following...
Read Article

PHP

Sep 1, 2020

tgugnani

Here is a short and quick article for How To Install Specific Version of Package using Composer TL;DR version composer require vendor/package:version //Example composer require laravel/passport:6....
Read Article
In this short post, I am putting two configurations for PHPMyadmin one that allows you to auto login and another that helps you to login with blank password. PhpMyAdmin Blank Password Login (AllowNoP...
Read Article
PHPMyAdmin is a free tool written in PHP and is used to manage mySQL databases over the web. Ever sine I started with PHP development I have been accustomed to using PHPMyAdmin to manage my databas...
Read Article
Here is a detailed tutorial on How to Install Wordpress on Ubuntu 20.04. Although there are different ways to get started with the Wordpress setup. In this tutorial, we will be taking the simplest...
Read Article
If you are working on a Laravel application and encounter this error could not find driver Here are a few things you can do to resolve this issue. If you are working on a fresh Laravel instal...
Read Article
If you are looking to group by your query results by created_at column and get the total count of records created on each date. Here is how you can achieve that. Consider you have a posts table and...
Read Article

Git

Aug 12, 2020

tgugnani

Here is a quick guide on how to install git on ubuntu 22.04 If you don't have git installed on your ubuntu machine you'll get this error on running any git command from the terminal Command 'git...
Read Article