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!
How to Set Up Laravel File Permissions
When working with Laravel, it's essential to configure laravel file permissions correctly to ensure smooth operation and security. This guide will show you how...
How to Use Multiple Databases in Laravel
Laravel makes web development easy and efficient, but what if your application needs to interact with more than one database? Maybe you want to...
Laravel Str::orderedUuid() vs UUID 7: A Comprehensive Comparison for Laravel 11
Introduction:
In Laravel 11, developers have more flexibility than ever when it comes to generating unique identifiers. While Str::orderedUuid() has been a common choice for...
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...