Blog

Insights, tutorials, and thoughts on web development and technology.

Install Specific Version of Package using Composer

Install Specific Version of Package using Composer

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....

Sep 01, 2020 · Tushar
Fix Laravel: could not find driver Exception

Fix Laravel: could not find driver Exception

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...

Aug 17, 2020 · Tushar
Laravel Eloquent Group By created_at only date and get Total

Laravel Eloquent Group By created_at only date and get Total

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...

Aug 14, 2020 · Tushar
How to install Git on Ubuntu 22.04

How to install Git on Ubuntu 22.04

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...

Aug 12, 2020 · Tushar
Quick Guide on Installing Composer Globally on Ubuntu 20.04

Quick Guide on Installing Composer Globally on Ubuntu 20.04

Here is a quick guide on how to install and get started with Composer on Ubuntu. # TL;DR version Run the following commands in your ubuntu terminal php -r "copy('https://getcomposer.org/installer',...

Aug 10, 2020 · Tushar