How to Check the Laravel Version of Your Project

check Laravel version

Laravel has become a go-to PHP framework for many developers, thanks to its elegant syntax and powerful features. Whether you’re building a small website or a complex web application, Laravel provides the tools you need to succeed. But knowing the version of Laravel your project is using is crucial for several reasons. Keeping Laravel updated … Read more

Importing and Exporting Excel Files in Laravel Livewire

In this article, we’ll explore how to use Livewire to create an inventory management app that supports importing and exporting Excel files. Before we begin, ensure you have installed the following: Visit this article to guide you to configure Laravel on your local environment Tutorial Preview: I. Setting Up the Laravel Project Let’s start by … Read more

How to Create a Rest API using Laravel Passport with Swagger?

In this article, we will explore step-by-step guide on how to create a Laravel API with Swagger documentation. This powerful combination allows for secure authentication with Laravel Passport and smooth API documentation using Swagger. Before diving into the implementation, ensure you have the following prerequisites: Create Laravel Project 1. Start by creating a new Laravel … Read more

Implement Login and Registration in Laravel

In this article, we will implement login and registration in Laravel, with a focus on developing controllers, models, migrations, and routing – all of which are essential parts of a Laravel framework. Before we start, ensure you have the following installed: You can also refer to the official documentation using this link. I. Create a … Read more