Create an EC2 Instance in AWS
In this tutorial, we are going to learn how to setup EC2 resources by choosing Amazon Machine Image (AMI), add storage, configure security groups, and create PEM key to access your instance using SSH. Prerequisites You need an Amazon Web Services Account. Choose Amazon Machine Image(AMI) You need to AWS console and navigate to Services -> EC2. Then Click on Instances on the left sidebar. After that click on Launch instance. Then you will redirect to a page where you can...
Laravel Fullcalendar with Create, Update, Delete Event Functions
In this tutorial, we are going to implement Fullcalendar in Laravel application with all the functionalities like add event, update event, delete event and drag event. Setting up the Project First you need to create a new laravel project by running below command in your terminal 1composer create-project laravel/laravel laravel-fullcalendar Then navigate to your project directory by using below command in your terminal 1cd laravel-fullcalendar Set up Database details Now you need to...
Drag and drop file upload in Laravel using Dropzone.js
In this tutorial, we are going to implement drag and drop file upload in Laravel application using Dropzonejs. Setting up the Project First you need to create a new laravel project by running below command in your terminal 1composer create-project laravel/laravel laravel-drag-drop-using-drop-zone.js Then navigate to your project directory by using below command in your terminal 1cd laravel-drag-drop-using-drop-zone.js Set up Database details Now you need to configure your Database...
Laravel autocomplete search-using Typeahead JS
In this tutorial, we are going to implement autocomplete search using typeahead.js. Typeahead Js is an eloquent javascript library is profoundly used for building autocomplete feature in your application. It is an essential tool and provides suggestions at blazingly fast speed especially when users starts typing a query in autocomplete box. Setting up the Project First you need to create a new laravel project by running below command in your terminal 1composer create-project...
Get Online Users in Laravel
In this tutorial, we are going to learn how to get online users in our Laravel application. In here we are going to make our custom middleware. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in your terminal 1composer create-project...
How to Get Location Information with IP Address in Laravel
In this tutorial, we are going to learn how to get location information in Laravel using Ip. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in your terminal 1composer create-project laravel/laravel laravel-get-location-information Then...
Laravel Socialite Facebook Login Example
In this tutorial, we are going to learn how to implement Facebook login using Socialite package in Laravel. When your users need to log to your application using their Facebook, this will be the easiest way to do it. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by...
Laravel change password with current password validation
In this tutorial, we are going to learn how to implement Change password functionality in Laravel. When you need to change your password with submit your current password, this will be the easiest way to do it. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running...
Laravel Multi Step Form Tutorial
In this tutorial, we are going to learn how to implement Multi Step Form in Laravel. When you need to add something without single step you can use this method to add it through multiple steps. Prerequisites Laravel To Continue with this tutorial, you should have installed Laravel 8 in your pc. If you are still not installed Laravel in your machine you can configure it from here. Setting up the Project First you need to create a new laravel project by running below command in...
Laravel Lumen Simple REST API Tutorial
Today we are going to build a REST API using Lumen which is a very popular microservice. When we develop want to develop only an API, we wont need default dependenices and libraries of Laravel. Therefore we'll use use Lumen. Prerequisites Lumen To Continue with this tutorial, you should have installed Lumen in your pc. If you are still not installed Lumen in your machine you can configure it from here. Postman To test our API endpoints, you need a API Testing...