How to create a MySql CRUD Application in PHP?

In this tutorial, you’ll learn how to build a CRUD application with PHP and MySQL. CRUD is an acronym for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for databases. We’ve already learned how to perform create (i.e. insert), read (i.e. select), update, and delete operations in previous chapters. In this tutorial, we’ll create a simple […]

How does Middleware work in laravel?

Today we will take a detailed look into Laravel Middleware, and will understand its use of it. What is Middleware? A Middleware is like a bridge between HTTP requests and responses. it provides a mechanism for inspecting and filtering HTTP requests entering your application Middleware is used to filter HTTP requests in your web application. […]

How to Create Laravel Routes and View?

What is Route? Routing is one of the essential concepts in Laravel. Routing in Laravel allows you to route all your application requests to their appropriate controller. The main and primary routes in Laravel acknowledge and accept a URI (Uniform Resource Identifier) along with a closure, given that it should have to be a simple […]

Service Provider in Laravel

Overview If you‘ve ever used the Laravel framework in your project, you will hear about server containers and service providers. They are the backbone of the Laravel framework and do all heavy jobs when your application runs. Service providers are the central place of all Laravel application bootstrapping. Your own application, as well as all […]

Laravel Request Lifecycle

This blog is to help you get to know about Laravel’s ‘Request Life Cycle‘ i.e, how this framework processes the given request in different stages and provides the response to the user. We will look into this as step by step process for better understanding. Request Lifecycle has different terminologies like Autoloader, kernel, Service Providers, Dispatch Request, […]

Flutter: Row Widget

Row and column help us to arrange the widgets horizontally and vertically respectively. These two widgets are very Useful in Flutter. Let’s see the Row widget: We can arrange widgets horizontally By Using this widget. This is the Row widget properties. Alignment Properties: These two alignments have the following properties. End: it will arrange the […]

Laravel 9 Directory Structure

When you are working with the laravel framework it is important to have some knowledge regarding the directory structure of the framework. You should know where to find the files you are looking for and where to place classes or third-party libraries. 1.  The App Directory2. The Bootstrap Directory3. The Config Directory4. Database Directory5. The […]

Laravel – Configurations

Introduction The configuration of the Laravel application deals through the ‘config’ subdirectory, which holds the entire configuration file related to your Laravel project. This subdirectory keeps files like a database, mailing, services, and session-based configuration files with an extension of .config. The configuration of the Laravel project permits you to define configuration per environment. This tutorial […]

Laravel-Installation

Laravel is a web application framework with expressive, elegant syntax. A web framework provides a structure and starting point for creating your application, allowing you to focus on creating something amazing while you sweat the details. Moreover, in case you do not use this virtual machine, you must fulfill the following requirements: Composer: Laravel implements […]