How to Send an Email in Laravel 11
The most basic and regular functionality of any web application is sending emails about anything to its users, customers, or…
How to Login to your Laravel 11 App with Google using Socialite
Creating authentication using social accounts is very popular now-a-days. We have already seen Login with LinkedIn and Login with Twitter…
How to Login to Your Laravel 11 App with Twitter / X using Socialite
Login with Twitter is a standard Authentication functionality for web and mobile applications. Twitter provides OAuth 1.0a and OAuth 2.0,…
How to Create CRUD Application using Laravel 11 and React.js
Why should you choose Laravel with React.js? React.js is the most popular frontend framework, with a huge community base and…
Laravel 11 CRUD: A Fun Journey Through Create, Read, Update, Delete!
Laravel 11 has been released! And today, we will create a CRUD application from scratch! By the end of this…
How to Create Word Document File in Laravel 11
To create a Word document file in Laravel, use the “phpoffice/phpword” package. PHPWord is a library written in pure PHP…
How to Integrate MongoDB in Laravel 11 with CRUD Operation
To use Laravel 11 with MongoDB, we will use this “mongodb/laravel-mongodb” package. Here is the step-by-step guide: Step 1: Install…
How to Integrate Elasticsearch in Laravel 11
To use Elasticsearch in Laravel, use the “Elasticquent” package. Elasticquent makes working with Elasticsearch and Eloquent models easier by mapping…
How to Define Route Groups in Laravel 11
Laravel route groups allow you to organize routes that share attributes, such as path, name, or middleware. This will enable…
How to Connect React Native Application with Laravel API
To connect the React Native app to Laravel, use the “fetch()” API. React Native application works on the front end,…