
Upload Files and Images with Validation in Laravel

File uploads are one of the vital pieces in most web projects, and Laravel has awesome functionality for that, but the information is pretty fragmented, especially for specific cases.

How to Install PHP 8 on Ubuntu 20.04

This blog will show you how to install PHP 8 on Ubuntu 20.04 and integrate it with Nginx and Apache.

Add Social Login in Laravel With Socialite

Social login is now an essential part of any site which performs user authentication. It saves the users a lot of time, as they won’t need to fill the whole form. They just sign up with their social account and next time they can log into the website by a single click.

Conditional Classes Blade Directives in Laravel

The @class directive conditionally compiles a CSS class string. The directive accepts an array of classes where the array key contains the class or classes you wish to add, while the value is a boolean expression.

How to Add Swap Space on Ubuntu 20.04

A swap is a space on a disk that is used when the amount of physical RAM memory is full. When a Linux system runs out of RAM, inactive pages are moved from the RAM to the swap space.

Vue.js Sweetalert Modal Notification Example

A toast notification is a message object that presents timely information, including confirmation of actions, alerts, and errors.

Laravel 8.x Cursor Based Pagination Example

Cursor pagination works by constructing "where" clauses that compare the ordered column values in the query, providing the most efficient database performance available amongst all of Laravel's pagination methods.

PHP Composer Cache Clear

Learn how to clear composer cache when package seems don't want to update.

How to Install React in Laravel 8

In this blog, we will learn how to install React JS in Laravel 8. If you don't know how to install Laravel 8 in React JS, this example tutorial is for you.

Laravel 8.x withExists Method to Eloquent Queries Example

In this blog, We will learn how we can use this withExists method to our eloquent query.