Category: Others (Technical)
Responsive DevExtreme Grid Toolbar
Introduction – Responsive DevExtreme Grid Toolbar DevExtreme is a powerful web development framework with a vast array of data presenting and formatting capabilities. It is developed by DevExpress to make responsive and platform independent application. DevExtreme makes the web development
Totara | How to enroll audience to Course or Program
Enrolling audience to Course or Program in Totara Problem: I want to enroll audience in course/program and I do not know that how we can enroll audience in course/program. To enroll an audience in course/program, I have followed the below
Salesforce SOAP and Bulk API Integration in PHP
Implementing Salesforce SOAP and Bulk API Integration in PHP Salesforce SOAP API: Salesforce SOAP API is a coding method to use our Org’s information with the help of inbuilt functions and SOQL query. With the help of these function, we
Creating custom plugins in wordpress
How to Create a custom plugins in wordpress What is a WordPress plugin: A plugin in WordPress is a small software app that can be added to a WordPress site to extend its functionality and to add new features to
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