Beginning Laravel 10 – From Novice to Professional (2023)
Beginning Laravel 10 – From Novice to Professional (2023), available at $74.99, has an average rating of 4.39, with 367 lectures, 1 quizzes, based on 1174 reviews, and has 25836 subscribers.
You will learn about Learn the Laravel concept and how to apply it to build real-world projects Practice your Laravel skills with challenges and assignments (solutions included) Leverage Laravel Eloquent to communicate with any databases in easy and elegant way Build 3 amazing real-world projects for your portfolio and become job-ready programmer Write clean code with Laravel 10 This course is ideal for individuals who are This course is meant for students already familiar with the basics of HTML, PHP and have basic understanding of OOP or PHP Developers who want to take their skill to the next level or Anyone who want to learn Laravel in efficient way It is particularly useful for This course is meant for students already familiar with the basics of HTML, PHP and have basic understanding of OOP or PHP Developers who want to take their skill to the next level or Anyone who want to learn Laravel in efficient way.
Enroll now: Beginning Laravel 10 – From Novice to Professional (2023)
Summary
Title: Beginning Laravel 10 – From Novice to Professional (2023)
Price: $74.99
Average Rating: 4.39
Number of Lectures: 367
Number of Quizzes: 1
Number of Published Lectures: 364
Number of Curriculum Items: 368
Number of Published Curriculum Objects: 364
Original Price: $49.99
Quality Status: approved
Status: Live
What You Will Learn
- Learn the Laravel concept and how to apply it to build real-world projects
- Practice your Laravel skills with challenges and assignments (solutions included)
- Leverage Laravel Eloquent to communicate with any databases in easy and elegant way
- Build 3 amazing real-world projects for your portfolio and become job-ready programmer
- Write clean code with Laravel 10
Who Should Attend
- This course is meant for students already familiar with the basics of HTML, PHP and have basic understanding of OOP
- PHP Developers who want to take their skill to the next level
- Anyone who want to learn Laravel in efficient way
Target Audiences
- This course is meant for students already familiar with the basics of HTML, PHP and have basic understanding of OOP
- PHP Developers who want to take their skill to the next level
- Anyone who want to learn Laravel in efficient way
** This course was updated in November 2023 **
Welcome to Beginning Laravel (2023) – From novice to professional! The mostup-to-date resource online for learning Laravel!
Are you ready to take your web development skills to the next level? Look no further, because our Laravel course is here to help you become a professional in one of the most popular PHP frameworks on the market.
Our course starts with the basics, introducing you to the Laravel framework and walking you through the process of setting up a development environment. From there, we’ll dive into the core concepts of Laravel, including routing, controllers, views, and more.
You’ll learn how to build robust and scalable applications using Laravel’s elegant syntax and tools. As you progress through the course, you’ll work on real-world projects that will help you put your skills into practice and build your portfolio.
By the end of this course, you’ll have a solid understanding of how to build and maintain Laravel applications at a professional level.
Don’t just take our word for it – check out what our students have to say:
“A good course that touches on pretty much most of the fundamental topics of learning/using Laravel.
My goal after a year-and-a-half of writing PHP procedurally was to learn a framework and I’m glad I chose this course to get started doing so” – Jacob P.
“This is the best course I have learned on udemy. The teacher is focusing really good on subject and give it in linear way. I think I am getting professional knowledge that will help me in my work. Thank you very much mister.” – Mohammed M.
“I rarely rate any course. I Already bought 4 Laravel courses, and I think this is the best course. Instructor gives different solutions/methods to solve a single problem. Clear explanation”. Mohd Rushdi.
So why wait? Start your journey to becoming a professional Laravel developer today! Enroll now and join the hundreds of students who have already benefited from our comprehensive and hands-on course. We can’t wait to see what you’ll build with your new skills.
Update Histories:
10/11/2023 – Add new section: Export and Import data on Contact App
26/08/2023 – Added new section: Build Blog with Laravel 10
11/11/2022 – Re-recorded some lectures with Laravel 9 (total 6 hours)
21/05/2022 – Added new content:
-
One-to-one relationship
-
Build settings feature
-
Build author profile page on Larapics app
02/04/2022 – Added new section: Authorization
01/03/2022 – Added new section: Working with Blade components
20/02/2022 – Added new section: Build a new project with Laravel 9
10/01/2022 – Update course curriculum to support Laravel 8
01/01/2022 – Added new section: Working with File Storage
06/05/2020 – Added Handling File upload
04/06/2020 – Added N+1 Query Problem & Eager Loading
02/03/2020 – Added new content about tidying up the code
01/15/2020
-
Updated contents on Setting up Local development environment
-
Added fresh content about Authentication in Laravel 6X
12/15/2019 – Added new content about Query scopes
11/20/2019 – Added fresh content with Laravel 6X
04/02/2018 – Added course contents About customizing Authentication with Laravel 5.6 Includes:
-
Authentication redirection
-
Basic Login Form customization
-
Advance Login Form customization
Course Curriculum
Chapter 1: Introduction
Lecture 1: Welcome
Lecture 2: Project Repositories
Chapter 2: Setting up our Laravel Development Environment
Lecture 1: Section Introduction (DON'T SKIP unless you have dev environment setup)
Lecture 2: Setting up Local Development on Windows – Installing XAMPP
Lecture 3: Setting up Local Development on Windows – Install Composer & Laravel Installer
Lecture 4: Upgrade PHP version on XAMPP (OPTIONAL)
Lecture 5: Setting up Local Development on Mac – Install Homebrew, PHP, MySQL and Composer
Lecture 6: Setting up Local Development on Mac – Installing Valet
Lecture 7: Alternative Local Development Environment – Installing Laravel Sail
Lecture 8: Other Tools to install
Lecture 9: My Visual Studio Code Editor settings
Chapter 3: Building Blog with Laravel 10
Lecture 1: Introduction
Lecture 2: Working with routes and views
Lecture 3: loading posts from markdown files
Lecture 4: Adding post metadata
Lecture 5: Styling our Blog with Tailwind CSS
Lecture 6: Creating application layout
Lecture 7: Refactoring application layout with Blade components
Lecture 8: Displaying author's posts
Lecture 9: Tagging the posts
Lecture 10: Displaying posts by tag
Chapter 4: Getting started with Laravel Artisan & Tinker
Lecture 1: Setting up new Laravel project
Lecture 2: Laravel project structure
Lecture 3: Artisan Command Line Interface
Lecture 4: Working with Tinker shell
Chapter 5: Routing
Lecture 1: Defining our first routes
Lecture 2: Routes Parameters
Lecture 3: Constraining the route parameter format
Lecture 4: Named routes
Lecture 5: Route groups
Lecture 6: Fallback routes
Chapter 6: Views and Blade Template
Lecture 1: Displaying data in the Blade template
Lecture 2: Creating our first view
Lecture 3: Exercise 1 – Creating view for contacts-create route
Lecture 4: Passing data to the views
Lecture 5: Another approach passing data to the views
Lecture 6: Building application layout
Lecture 7: Blade template inheritance
Lecture 8: Exercise 2 – Using blade template inheritance
Lecture 9: Including sub-views
Lecture 10: Blade control statements and loops
Lecture 11: Controlling loops and loop variables
Lecture 12: Rendering views for collection
Lecture 13: Styling the empty view
Lecture 14: Create landing page for our app
Chapter 7: Controllers
Lecture 1: Creating our first controller
Lecture 2: Exercise 3 – From routes to controllers
Lecture 3: Grouping the controller routes
Lecture 4: Single Action Controller
Lecture 5: Dependency Injection in the Controller
Lecture 6: Resource Controller
Lecture 7: Partial resource routes
Lecture 8: API resource routes
Lecture 9: Nested resources
Lecture 10: Customizing the resource routes
Chapter 8: Working with Database
Lecture 1: Setting up the database connection
Lecture 2: Introduction to Migrations
Lecture 3: Creating our first migration
Lecture 4: Exercise 4 – Creating Tasks table schema with migration
Lecture 5: Updating table with migration
Lecture 6: Foreign key constraints
Lecture 7: Dropping foreign keys
Lecture 8: Foreign key constraint actions
Lecture 9: Query Builder – Inserting records
Lecture 10: Query Builder – Updating and deleting records
Lecture 11: Query Builder – Retrieving all records
Lecture 12: Query Builder – Retrieving a single record
Lecture 13: Seeding database
Lecture 14: Working with Faker library
Chapter 9: Eloquent ORM
Lecture 1: Creating our first Model
Lecture 2: Exercise 5 – Creating Contact Model
Lecture 3: Querying database with Eloquent
Lecture 4: Using the Where clauses
Lecture 5: Inserting, Updating and deleting records
Lecture 6: Mass assignment
Lecture 7: Inserting or updating method
Lecture 8: Upsert method
Lecture 9: Exercise 6 – Seeding the contacts table
Lecture 10: Exercise 7 – Calling the model in the controller
Lecture 11: Eloquent Relationship – Querying models
Lecture 12: Eloquent Relationship – Inserting related models
Lecture 13: Eloquent Relationship – Implementing The Eloquent relationship
Chapter 10: Pagination
Lecture 1: Introduction to Pagination
Lecture 2: Implementing the Pagination
Lecture 3: Appending query string and handling auto numbering
Lecture 4: Creating Pagination manually
Chapter 11: Model Factories
Lecture 1: Create our first factory
Lecture 2: Factory states
Lecture 3: Factory sequences
Instructors
-
Eding Muhamad Saprudin
Full-stack Web Developer and Instructor -
TutsPrime Online Education
Tutorials Programming Made Easy
Rating Distribution
- 1 stars: 33 votes
- 2 stars: 29 votes
- 3 stars: 145 votes
- 4 stars: 318 votes
- 5 stars: 649 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
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024