rajesh

rajesh

Image Validation in Laravel

Before uploading images on server it must be validate to sanitize the user input . It could be malicious attack if we didn’t validate image before uploading. Improper validation of image could lead security vulnerability. So we need to validate…

Multi step Form In VueJs.

What Is Multi Step Form? Multi step Form is a long form broken into multi steps. It is not a multi forms rather than multi steps in a single long form. The reason behind it, short form is more easy…

Form Validation In Laravel

Form-Validation-In-Laravel.png

Form Validation In Laravel. Validation may be a quite common task in web applications. Entered data should be Validated before sending it to server. This post deals with form validation in Laravel. After reading this post we’ll be ready to validate form with Laravel. Below are the…

Create A Dynamic PDF File In LARAVEL.

Create A Dynamic PDF File In LARAVEL

Create a dynamic pdf  in Laravel, Here  I would like to share with you how to create a dynamic  PDF file in Laravel. Making a dynamic pdf file  is required in many situations like create an invoice , create a…

Contact Form With Captcha

Contact Form With Captcha

Contact Form With Captcha: Captcha Code is in a form is used for ensuring that the form is being submitted by human being not by any tools or program. During entering the data into our website , we need to…

Vue Toast Notification

In this post we will learn how to implement toast notification in vuejs. We can implement toast notification in vuejs using vuejs npm, yarn oR CDN. Installation: #yarn yarn add vue-toast-notification # npm  npm install vue-toast-notification Usage import  Vue  from  ‘vue’; import  VueToast  from  ‘vue-toast-notification’;…

Add or Remove Table Row Dynamically Using VueJS

add_remove_vuejs

Here, we will learn about how we can dynamically add/remove rows of the table row using VueJs. We have performed the same functionality with Jquery also, you can check it from How To Add/Remove Table Row Dynamically Using Jquery. Please give…

How To Customize Laravel Auth.

How-To-Customize-Laravel-Auth

How To Customize Laravel Auth. Authentication is the process of validating the user details in web application. Laravel makes it very simple in fact every thing, related to authentication that is Login,Registration , Forgot password, Remember me is already configured…

Rest API In Codeigniter – 3.

Rest API In Codeigniter - 3.

Rest API In Codeigniter – 3. Before understanding “REST API” we have to understand what is REST and what is API first. What is REST? REST stands for Representational State Transfer which is a technique or architecture for managing information…