Category: Laravel
Improve your Laravel Coding Standards Using GrumPHP
You always want to write better code. For this, you should have to improve your coding standards. Whether you are working alone or with a…
How to Upload and Crop Image in Laravel Using imgAreaSelect and Intervention Image Library
Recently one of our readers asked to write an article on how to upload and crop images in Laravel. In the past, I published an…
How to Upload Video on YouTube in Laravel Application
Recently one of our readers asked how to upload a video on YouTube from the Laravel application. They wanted to build a system to upload…
Create Thumbnail in Laravel Using Intervention Image Library
On the website, we always deal with images. Based on the website’s structure, we use different versions of images. It’s always a good practice to…
Login with LinkedIn in Laravel Using Laravel Socialite
Adding a social login system on the website is a trend nowadays. The social login option on a website skips the verification process of a…
How to Change User’s Password in Laravel
While working on the Laravel application, you may require to quickly change the password of the user. And you don’t want to follow the boring…
How to Schedule Cron in Laravel to Automate Tasks
Cron jobs are useful to automatically execute scheduled tasks. To run these jobs, you need to add a cron entry per task. But, it can…
How to use Laravel Events and Listeners in Your Application
Laravel ships with several nice features to simplify development. Broadcasting, File Storage, Notifications, and Events are some of them. Each of these features helps developers…
How to Send Activation Email in Laravel After User Registration
Laravel comes with an authentication flow when we install it. It includes login, registration, and forgot password flow in the Laravel core itself. Using this…
How to Use Laravel Passport for REST API Authentication
In today’s web development, APIs or web services are very popular. While developing a mobile application, API plays the role of bridge to passing data…