Welcome to Coding Lesson, a web development blog dedicated to helping individuals learn and improve their coding skills. Whether you’re a beginner or a seasoned pro, our team of experienced developers and educators will provide you with valuable tips, tricks, and techniques to help you take your coding to the next level. From front-end web development to back-end programming, we cover it all, so join us today and start coding like a pro!
Creating Dynamic Nested Menus in Laravel with Relationships
In Laravel, you can create dynamic nested menus by making use of relationships between your models. In this blog, we will be covering how...
How To Use Laravel Breeze For Authentication?
Laravel 8 introduced two new authentication starter kits, breeze, and jetstream. In Laravel 6 and 7, you needed a package called laravel/ui to scaffold...
Laravel Stripe Payment Gateway Integration
Laravel stripe payment gateway integration is today's leading topic. I'll cover practical scenarios along with cart functionality.
Overview
Install Laravel 8
Install Required Dependencies
Configure...
Laravel Collections To Manipulate Arrays
In this tutorial, you're going to learn about the Laravel collections. Using the Collection, you can manipulate the array with lots of helper functions....
Laravel Factory For Database Seeding
Laravel factory is today's leading topic. In this tutorial, you'll learn to seed dummy data using a faker composer package.
Generally, every application requires data...
Firebase Push Notification Using Laravel
In this tutorial, we'll learn how to send a firebase push notification using laravel. You might need to send push notifications to Android or...
Laravel 8 CRUD Step By Step Tutorial
At present, every web application requires CRUD (create, read, update, delete) functionality. Laravel provides awesome features such as routing, resource controller to create CRUD...
Laravel Localization – Multi Language Website
In this tutorial, you'll learn how to create an application that is in multiple languages. Laravel localization is a convenient way to do that....
How To Use Laravel Gates And Policies?
Authentication is an important process in every application, but sometimes you need to authorize the user. For example, think of a user who is...
Multiple Database Connections In Laravel
Sometimes, our application needs multiple database connections. By default, Laravel is configured with the default database connection. In this tutorial, you're going to learn...