13 05, 2020

Resize and Draggable Image using Jquery

2020-05-13T05:56:08+00:00May 13, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to Jquery Libraries Using jquery libraries, we can implement Resize and draggable functionality on an image. It is really a fantastic thing and we do not need to bother about knowing the inner functionality of how it is working. [...]

11 05, 2020

USEFUL LARAVEL BLADE DIRECTIVES

2020-05-11T06:05:30+00:00May 11, 2020|Web Development|0 Comments

|
| ByWebner

Laravel Blade Directives Laravel Blade Directives are the functions of Laravel’s templating engine that are basically a piece of code that covers the complex yet common and repetitive code written in PHP. Many of these directives are used while working [...]

23 04, 2020

Let’s start with GraphQL

2020-04-23T06:26:41+00:00April 23, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to GraphQL GraphQL is a query language for API that executes queries by using a system with a definition of data on the server-side. It's not linked with any particular type of database or storage engine. It even makes [...]

13 04, 2020

Component Lifecycle of Angular

2020-04-13T06:35:04+00:00April 13, 2020|Web Development|0 Comments

|
| ByWebner

Introduction Components are like a building block that controls the HTML view of your application. They can communicate with other components to provide functionality to the application. The components are denoted by @Components. An application can have more than one [...]

6 04, 2020

Reactive Forms In Angular

2020-04-06T06:13:45+00:00April 6, 2020|Web Development|0 Comments

|
| ByWebner

Introduction to Reactive forms In Reactive Forms, we use Modal driven approach to handle form inputs which changes over time. Reactive forms are most preferred to use. It is flexible to use and provides many benefits. For example, By using [...]

25 03, 2020

Laravel URL QR Code Generator

2020-03-25T08:56:56+00:00March 25, 2020|Web Development|0 Comments

|
| ByWebner

Why the QR Code? A QR code can make you download apps, redirect to a particular URL, access wireless networks like WiFi and much more. They can also lead one to perform quick actions without even putting any effort. Many [...]

13 03, 2020

Bootstrap 4 Filters

2020-03-13T09:01:01+00:00March 13, 2020|Web Development|0 Comments

|
| ByWebner

What is Bootstrap 4? Bootstrap 4 provides a lot of components such as Modal, Carousal, Tooltip, etc. But bootstrap does not have a component that allows filtering. However, jQuery be used to filter/search for elements. Filter Tables We can easily [...]

11 03, 2020

Upgrade Mongodb Extension Version – Laravel Project

2020-03-11T06:38:03+00:00March 11, 2020|Web Development|0 Comments

|
| ByWebner

Issue while upgrading Mongodb extension version: I have upgraded laravel version from 5.7 to laravel version 6.5. Now, I’m getting mongodb extension version error while updating composer. Error given below: ERROR: jenssegers/mongodb v3.6.0 requires mongodb/mongodb ^1.4 -> satisfiable by mongodb/mongodb[1.4.0, [...]

25 02, 2020

Image Compression in Laravel

2020-02-25T07:32:06+00:00February 25, 2020|Web Development|0 Comments

|
| ByWebner

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

Go to Top