Mastering Laravel 10 Query Builder, Eloquent & Relationships
Mastering Laravel 10 Query Builder, Eloquent & Relationships, available at $84.99, has an average rating of 4.2, with 93 lectures, 8 quizzes, based on 137 reviews, and has 693 subscribers.
You will learn about Laravel's database configuration Learn to work with Migrations Learn how and when to use Seeders Learn how and when to use Factories Understand the Laravel Query Builder Learn how to construct SQL queries using the Query Builder Learn how to use the Query Builder to perform CRUD operations on the database Understand how to use the Query Builder to build complex queries with conditional logic and dynamic filters Laravel databases and Eloquent ORM Learn how to use Eloquent to create, read, update, and delete records Learn how to use Eloquent correctly to query data from the database Learn how and when to use relationships Learn how to use Eloquent to query polymorphic relationships Learn Eager Loading vs Lazy Loading This course is ideal for individuals who are Laravel developers who want to sharpen their Query Builder and Eloquent skills. or Laravel developers who want to specialize the Query Builder. or Laravel developers who struggle with databases and Eloquent or Laravel developers who lack a strong understanding of relationships It is particularly useful for Laravel developers who want to sharpen their Query Builder and Eloquent skills. or Laravel developers who want to specialize the Query Builder. or Laravel developers who struggle with databases and Eloquent or Laravel developers who lack a strong understanding of relationships.
Enroll now: Mastering Laravel 10 Query Builder, Eloquent & Relationships
Summary
Title: Mastering Laravel 10 Query Builder, Eloquent & Relationships
Price: $84.99
Average Rating: 4.2
Number of Lectures: 93
Number of Quizzes: 8
Number of Published Lectures: 93
Number of Published Quizzes: 8
Number of Curriculum Items: 101
Number of Published Curriculum Objects: 101
Original Price: $19.99
Quality Status: approved
Status: Live
What You Will Learn
- Laravel's database configuration
- Learn to work with Migrations
- Learn how and when to use Seeders
- Learn how and when to use Factories
- Understand the Laravel Query Builder
- Learn how to construct SQL queries using the Query Builder
- Learn how to use the Query Builder to perform CRUD operations on the database
- Understand how to use the Query Builder to build complex queries with conditional logic and dynamic filters
- Laravel databases and Eloquent ORM
- Learn how to use Eloquent to create, read, update, and delete records
- Learn how to use Eloquent correctly to query data from the database
- Learn how and when to use relationships
- Learn how to use Eloquent to query polymorphic relationships
- Learn Eager Loading vs Lazy Loading
Who Should Attend
- Laravel developers who want to sharpen their Query Builder and Eloquent skills.
- Laravel developers who want to specialize the Query Builder.
- Laravel developers who struggle with databases and Eloquent
- Laravel developers who lack a strong understanding of relationships
Target Audiences
- Laravel developers who want to sharpen their Query Builder and Eloquent skills.
- Laravel developers who want to specialize the Query Builder.
- Laravel developers who struggle with databases and Eloquent
- Laravel developers who lack a strong understanding of relationships
Are you struggling with Laravel databases and Eloquent? Do you want to learn how to easily manage your database with migrations and seeders? Look no further than Code With Dary’s “Mastering Laravel Databases & Eloquent” course on Udemy! This comprehensive course covers the ins and outs of Factories, Seeders, Migrations, Query Builder, Eloquent, and relationships in Laravel 10. With Code With Dary’s expert guidance, you’ll learn how to efficiently manage your database and build powerful, scalable applications. Don’t miss out on this opportunity to take your Laravel skills to the next level – enroll in “Mastering Laravel 10 Query Builder, Eloquent & Relationships” today!
What is Laravel?
Laravel is the go-to PHP web application framework for developers. With its extensive set of features and tools, Laravel enables developers to create web applications in a fast and efficient manner. One of the standout features of Laravel is its powerful database management system, which runs on top of the Eloquent ORM. Using Laravel and Eloquent, developers can seamlessly perform CRUD operations on the database, as well as execute complex queries with ease. Learning Laravel and Eloquent is a must for any PHP developer who needs to build modern, scalable web applications with confidence.
Why is Laravel so popular?
Laravel is popular because it provides developers with a powerful set of tools and features that make it easy to build modern, scalable web applications. It has a robust database management system that runs on top of the Eloquent ORM, which allows developers to easily perform CRUD operations on the database and execute complex queries. Laravel also has a large and active community of developers, which means that there are many resources available for learning and troubleshooting. Additionally, Laravel is easy to learn and use, which makes it a great choice for developers of all skill levels.
Who is this course for?
Some people may find Eloquent ORM difficult because it has a lot of features and can take time to fully understand. Additionally, working with complex relationships between database tables can sometimes be challenging. However, with practice and experience, developers can become proficient in using Eloquent to manage databases in Laravel applications. This course will teach you everything in depth about Laravel databases, Query Builder, and Eloquent! I do expect you to have knowledge in Laravel before starting this course, since we’re going to focus purely on databases and eloquent.
Tools we will be using
We need to use a code editor for this task. It doesn’t matter which one you use. I prefer using tools such as Ray from Spatie and Tinkerwell from BeyondCode. Both products are paid, but not required for this task. I use them in this course to make data outputting easier and to show you query speed, which can be compared to other queries.
Course Curriculum
Chapter 1: Course Introduction
Lecture 1: Introduction
Lecture 2: Course structure
Lecture 3: Source code
Chapter 2: Mastering Migrations
Lecture 1: Project & database setup
Lecture 2: Database configuration file
Lecture 3: What are migrations and how do they work?
Lecture 4: Creating our first migration
Lecture 5: Column modifiers
Lecture 6: Running migrations & different options
Lecture 7: Squashing migrations
Lecture 8: Modifying Columns
Lecture 9: Renaming Columns
Lecture 10: Dropping Columns
Lecture 11: Migrations Cleanup
Chapter 3: Mastering Factories & Seeders
Lecture 1: Factories vs Seeders – What is the difference?
Lecture 2: Defining our first Factory
Lecture 3: Using a Factory through a Seeder
Lecture 4: Using a Factory through Artisan Tinker
Lecture 5: Defining our first Seeder
Lecture 6: Using a JSON file to read Data for our Seeders
Lecture 7: Calling Multiple Seeders
Chapter 4: Mastering the Query Builder [PART 1]
Lecture 1: Primary & Foreign Keys
Lecture 2: Introduction to the Query Builder
Lecture 3: First, Value and Find Methods
Lecture 4: Retrieving a List of Column Values
Lecture 5: Inserts Through the Query Builder
Lecture 6: Insert & Get Id Through the Query Builder
Lecture 7: Updating Through the Query Builder
Lecture 8: Deleting Through the Query Builder
Lecture 9: Aggregates Methods
Lecture 10: whereNot & orWhereNot
Lecture 11: Determining if Records Exist
Lecture 12: whereBetween & whereNotBetween Methods
Lecture 13: Debugging Through the Query Builder
Chapter 5: Mastering the Query Builder [PART 2]
Lecture 1: Database Transactions
Lecture 2: Pessimistic Locking
Lecture 3: Chunking Data
Lecture 4: Streaming Results Lazily
Lecture 5: Raw Methods
Lecture 6: Ordering Through the Query Builder
Lecture 7: Full Text indexes
Lecture 8: Limit & Offset Through the Query Builder
Lecture 9: Conditional Clauses
Lecture 10: Removing Existing Ordering
Lecture 11: Using the paginate() method
Lecture 12: Using the simplePaginate() method
Lecture 13: Using the cursorPaginate() method
Chapter 6: Mastering Eloquent ORM
Lecture 1: Introduction to Eloquent
Lecture 2: Eloquent Model Conventions
Lecture 3: The $fillable And $guarded Properties
Lecture 4: Building Queries
Lecture 5: Retrieving Single Models
Lecture 6: Inserting / Creating Models
Lecture 7: Retrieving All Models
Lecture 8: firstOrCreate & firstOrNew
Lecture 9: Updating Models
Lecture 10: Attribute Changes [isDirty, isClean, & wasChanged]
Lecture 11: UpdateOrCreate & Upserting Models
Lecture 12: Deleting Models
Lecture 13: Soft Deleting Models
Lecture 14: Pruning Models
Lecture 15: Replicating Models
Lecture 16: Global Scopes
Lecture 17: Local Scopes
Lecture 18: Dynamic Scopes
Lecture 19: Using a Trait to store Scopes
Chapter 7: Mastering Relationships [PART 1]
Lecture 1: What are Relationships?
Lecture 2: One to One Relationship
Lecture 3: One to Many / Belongs To Relationship
Lecture 4: Many to Many Relationship
Lecture 5: Eager Loading
Lecture 6: Has one Through Relationship
Lecture 7: Has One of Many Relationship
Lecture 8: Has Many Through Relationship
Chapter 8: Mastering Advanced Relationships [PART 2]
Lecture 1: What are Polymorphic Relationships?
Lecture 2: One to One Polymorphic Relationship
Lecture 3: One to Many Polymorphic Relationship
Lecture 4: One of Many Polymorphic Relationship
Lecture 5: Many to Many Polymorphic Relationship
Chapter 9: Create a Advanced Laravel Blog
Lecture 1: Project Setup
Lecture 2: Installing Laravel Breeze
Lecture 3: Defining Migrations
Lecture 4: Defining Models / Relationships
Instructors
-
Dary Nazar
Content Creator / Developer
Rating Distribution
- 1 stars: 3 votes
- 2 stars: 3 votes
- 3 stars: 10 votes
- 4 stars: 33 votes
- 5 stars: 88 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Digital Marketing Foundation Course
- Google Shopping Ads Digital Marketing Course
- Multi Cloud Infrastructure for beginners
- Master Lead Generation: Grow Subscribers & Sales with Popups
- Complete Copywriting System : write to sell with ease
- Product Positioning Masterclass: Unlock Market Traction
- How to Promote Your Webinar and Get More Attendees?
- Digital Marketing Courses
- Create music with Artificial Intelligence in this new market
- Create CONVERTING UGC Content So Brands Will Pay You More
- Podcast: The top 8 ways to monetize by Podcasting
- TikTok Marketing Mastery: Learn to Grow & Go Viral
- Free Digital Marketing Basics Course in Hindi
- MailChimp Free Mailing Lists: MailChimp Email Marketing
- Automate Digital Marketing & Social Media with Generative AI
- Google Ads MasterClass – All Advanced Features
- Online Course Creator: Create & Sell Online Courses Today!
- Introduction to SEO – Basic Principles of SEO
- Affiliate Marketing For Beginners: Go From Novice To Pro
- Effective Website Planning Made Simple