How To Setup Laravel In Docker Container

Laradock is well-known package in the Laravel community. I will use the Laradock library to show you how to prepare Docker Container and run the laravel application in it. Docker is different from Homestead. Homestead creates a virtual machine while Docker, on the other hand, is pretty much the same as Vagrant; it also gives you the … Read more

Laravel Linkedin Login: How to Login with Linkedin in Laravel

In this tutorial, I am going to explain to you how to log in users with Linkedin and save them into your database using Laravel. Laravel provides us a Socialite package that helps with social authentication. Laravel Linkedin Login First, we install Laravel Project. Step 1: Configure the Laravel Project composer create-project –prefer-dist laravel/laravel laravellinkedinlogin Step 2: Set up a … Read more

How to Generate Captcha Code in Laravel

Captcha stands for Completely Automated Public Turing test. It is mainly used as a security test to ensure only human users can pass through. Computers or bots are not able to solve a captcha. There are different types of captcha. Therefore, we can use some protection. How to Generate Captcha Code in Laravel The logic behind … Read more

Laravel jQuery Validation: How to Validate jQuery Form in Laravel

Laravel is known as one of the most popular PHP frameworks. Laravel provides several features like Bootstrap, New Blade Directive, API Controller Generation, etc. There are multiple jQuery plugins to validate the form. This jQuery plugin produces mild clientside form validation easily. These plugins have so many attribute alternative rules to authenticate form such as: maxlength minlength minvalue maxvalue extension … Read more

Laravel and Vue Chart Tutorial: What You Need to Know

For this topic, we will use two web technologies. Laravel as a backend and Vue.js as a Frontend component. We will insert the data from the vue component and display the data in the form of Charts. For charts, we will use a chartjs library. Laravel and Vue Chart js We will use vue-chartjs as … Read more

Laravel 5.6 CRUD Tutorial: The Complete Guide

Laravel is a free, open-source PHP web framework. It follows MVC(Model View Controller) Architecture. Laravel is recognized as one of the most popular PHP frameworks. Bugfix released 5.6 on February 7, 2018. Laravel has become the first-ever back-end framework to pass 40,000 stars on Github. In this tutorial, I will illustrate a simple insert, update and delete application in the … Read more

Laravel Model Observers Tutorial: Complete Guide

If you listen to many events on a given model, you may use observers to group all of your listeners into a single class.  Laravel does not include any default directory for observers, so you may create any folder you like to house your observer classes. Laravel Model Observers Observers in Laravel are classes with … Read more

How To Integrate Datatables API In Laravel

If we want to list the data from the database, then sorting, searching, and pagination is the basic functionality. There is also one package available in the Laravel to use Datatables, but we will use JS to integrate into our tables. How To Integrate Datatables API In Laravel First, we will install the Laravel as … Read more

Laravel Artisan Console: The Complete Guide

Artisan Command Line Interface comes with a brand new Laravel project out of the box. There are so many commands the Laravel application provides us by default.  There so many tasks in your application that can be very well handled by command line tools. So this tutorial is dedicated to Laravel 5.5 Commands. You can … Read more

Laravel 8 Logs and Errors: The Complete Guide

When you start a new project, then Laravel Logs are important for you to debug the application. In the case of Laravel, it is configured out of the box. An App\Exceptions\Handler class is where all the exceptions are triggered and logged in the storage file and then return to the user. Laravel used a monolog library to utilize … Read more

Laravel 5.4 Crud Example: The Complete Guide

Welcome, Web Artisans,  In today’s AppDividend Tutorial, I have shown the code of Laravel 5.4 Crud Example From Scratch. It is a simple Laravel 5.4 tutorial for beginners. For creating Laravel Project, you need to have the following things. PHP >= 5.6.4 OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension XML PHP Extension Composer Step 1: Create … Read more