Fixing the Infamous “Maximum SOQL Limit” Error in Apex

|
| By Webner

The “Maximum SOQL Limit” error, often accompanied by the message System.LimitException: Too many SOQL queries: 101 is one of the most common and frustrating problems faced by Salesforce developers. It signifies a violation of a fundamental governing rule (governor limit)

Image Compression in Laravel

| By Webner

Steps to follow: Install the Intervention image package first in your project composer require intervention/image If you want to check official documentation of intervention image you can check it from here- http://image.intervention.io/getting_started/installation Inside the config/app.php- In providers, add:- Intervention\Image\ImageServiceProvider::class, In