Category: Web Development
Adding multiple filters to the query dynamically in Laravel
Laravel: Adding multiple filters to the query dynamically There may be some situations when the user has the facility to apply some filters on a set of objects. For Example – when we visit the e-commerce sites, there are certain
Class ‘App\Controller\Aws\S3\S3Client’ not found error in CakePHP 3.*
How to resolve “Class ‘App\Controller\Aws\S3\S3Client’ not found” error in CakePHP 3.* Problem: Class ‘App\Controller\Aws\S3\S3Client’ not found error occurs when we are trying to create S3Client class object with given code (code copied from github): $s3 = new Aws\S3\S3Client ( [
Class ‘App\Controller\Aws\S3\S3Client’ not found error in CakePHP 3.*
How to resolve “Class ‘App\Controller\Aws\S3\S3Client’ not found” error in CakePHP 3.* Problem: Class ‘App\Controller\Aws\S3\S3Client’ not found error occurs when we are trying to create S3Client class object with given code (code copied from github): $s3 = new Aws\S3\S3Client ( [
Class ‘App\Controller\Aws\S3\S3Client’ not found error in CakePHP 3.*
How to resolve “Class ‘App\Controller\Aws\S3\S3Client’ not found” error in CakePHP 3.* Problem: Class ‘App\Controller\Aws\S3\S3Client’ not found error occurs when we are trying to create S3Client class object with given code (code copied from github): $s3 = new Aws\S3\S3Client ( [
How to create Bootstrap dropdowns in Bootstrap v4
Creating Bootstrap dropdowns in Bootstrap v4 Dropdowns are used to display lists of links, names etc. Bootstrap dropdowns can be toggled by clicking on it. 1.Create a file with .html extension. 2.Include bootstrap css and js version 4 CDN link
Using Laravel Eloquent ORM
Introduction to Laravel Eloquent ORM Introduction: Eloquent ORM is an Object Relational Mapper that interacts with the database. It is a package separate from laravel so can be used outside the laravel too. It implements active record pattern. Laravel Eloquent
Sort query result according to search conditions in CakePHP 2.
How to sort query result according to various search conditions in fetch query of CakePHP 2. Problem: Priority based sorting of records Example: Search a string (“Proposalways StudySection”) and display records in following order: Contain all words (“Proposalways StudySection”) in
Using Breadcrumbs in Laravel
How to add Breadcrumbs to your Website in Laravel Breadcrumbs are links used to track and navigate in the website. Generally every page is considered as a link and is arranged in hierarchical order at the top of the website.
Handle data from .msg file parsed by IndependentSoft’s msg.net package
Handle data from .msg file parsed by IndependentSoft’s msg.net package IndepentSoft’s MSG.NET package is used for parsing of outlook .msg files for reading the contents of file and which can be used to display contents on screen or in our
