- +91 844 9090 904
- info@maximumlearning.io
- Sector 62, Noida, 201309
Get started on your Laravel journey with our comprehensive course designed for beginners! Laravel has emerged as the top pick among PHP developers for its simplicity, high performance, and wide-ranging suite of tools that streamline the web development process.
As PHP 8 unfolds, Laravel is all set to redefine your perception of PHP altogether. It’s like the Ruby on Rails of the PHP universe, and perhaps even superior. It’s expressive, fun, fluent, easy to master, and a breeze to use. Both newcomers and seasoned professionals can’t seem to get enough of it! Now, you have the opportunity to join this community of satisfied individuals who enjoy building things and earn while doing so.
Our Laravel course is all you’ll ever need to understand everything about this robust framework – setting it up, getting started, and leveraging its powerful capabilities for modern web development. We’ll cover in depth 5 key projects in 2023:
Task List
Book Reviews
Event Management API
Livewire Poll App
Job Portal (our most extensive project)
Let’s pause the introduction here and take a look at what our students are saying about my courses:
“Amazing course! In-depth explanations, perfect talking pace, talks slow and is direct to the point. I had no previous knowledge in Symfony before starting, and this course gave me the confidence to start developing real-world apps using Symfony. You will learn a lot of the Symfony framework, and some other cool techniques like Ajax Calls, Testing, Server configuration and Continuous Deployment of your code.”
“This is a Fantastic Course for Symfony exceeds expectations!! Piotr is an experienced, knowledgeable, and serious developer. This course not only helped me to learn the inner workings of Symfony but also improve my OO PHP syntax, improve on git, get a better understanding of development stages, introduced me to cloud deployment … even CI/CD. From where I stand as a beginner, it’s a mini MVC developer course. Couldn’t recommend it enough. You will certainly learn. Thanks, Piotr.”
“Did the instructor write Symfony? He is very very knowledgeable.”
“This guy is by far the best instructor I’ve ever come across. I took his other Symfony course and advanced my understanding of the Framework more in a week than I have in the past year. This course has filled a ton of gaps. He understands the complex learning curve and it’s the relationship to the content he covers thoroughly… a rarity in teaching, never mind coding complex Frameworks. Just stick with the course.. you’ll have that ‘Aha!’ moment. I’m working on my own Symfony Framework based project(s) as I take this course… between Piotr, Github, and Google… it’s getting done! Two of the most effective courses I’ve ever taken. I can’t wait for what he puts out next.”
Don’t delay!
If you want to invest your time wisely, this course could be the most productive period you will have. You’ll feel completely at home with Laravel by the end of it.
Even if you’re pressed for time, we’ve got you covered. The course is designed to cater to your schedule. You can learn at your own pace. The first section will introduce you to Laravel’s basics, getting you started in just 3-4 hours. Once you’re ready for more, the course is here, waiting for you to dive in.
I'll explain how to troubleshoot and how to get help!
Let's see how to use the course source code!
Learn some tips and tricks about the Visual Studio Code. See the themes, fonts and extensions I recommend!
Let's quickly try to understand why Laravel is so popular!
Let's see what are we gonna build and learn inside this section!
Learn how to create a new Laravel project using Composer, composer dependencies, understand the Laravel project directory structure, learn how to start Laravel projects locally
Routing guides user requests towards particular actions. You'll discover how to provide a response for any URL within your application.
Let's learn the basics of Blade templates.
Learn Blade directives like @if, @foreach, @forelse to render HTML conditionally and to work with lists.
Let's cleanup the code a little, implement the route that will fetch one task, implement the template and then create the layout template and learn about Blade template inheritance
Let's learn the easiest (yes!) way to run MySQL on any computer!
Let's understand how to connect to the database, how to test if the connections is working and let's understand how it's configured and what are the environment variables.
Understand the database abstraction in Laravel and how database schema changes are done using migrations.
Learn how to generate big sets of fake data and load it into the database
Let's talk about Eloquent Models - how to read data, learn the basics of query builder, and play around with a tool called Tinker.
Learn about view routes, rendering a form and CSRF attack and how to protect against it.
Learn how to validate the user input and then save it into the database.
Learn a little about sessions in Laravel/PHP, showing validation error messages & one-time flash messages.
Learn how to edit the data already in the database. Learn about method spoofing.
A quick video on how to keep the sent values in the form if the form submission fails, so the user does not have to retype everything from scratch (only the invalid values).
Learn how to use the power of Laravel to write less verbose code. Route model binding automatically loads models, mass assignment easily associates submitted data with models and form requests can be a common place for validation rules.
See how to delete records from the database, and how to do that properly and safely on the Blade side!
Learn how you can use the @include directive to create subviews, reusable Blade code chunks using forms as an example.
Learn how easy it is in Laravel to divide results into pages.
Let's add the missing links and then implement the Task completed/not completed toggling feature.
Learn how to set up Tailwind CSS super quickly using Play CDN. Learn what Tailwind is and add some initial styling. Learn how to add CSS classes conditionally.
Let's style the task page. Learn about the Tailwind @apply directive.
Style all the forms.
Style the flash message and learn how to use Alpine.js to make your page dynamic. Alpine.js is super simple and tiny. It's much easier to use than plain JavaScript with DOM.
Let's see the books review project we'll build next!
Create and set up the project, migrations and models.
Define the relationship between 2 models (tables) in both Database and in Laravel. Understand the Laravel conventions about making DB relations.
Learn how to generate more diverse data and how to generate and connect related models.
Learn all the ways to query related data - eager loading and lazy loading. See how to connect models together.
How to extend the query builder with your own methods, that encapsulate some query constraints.
Want to know how many reviews a book has, or what is the average rating? See how!
Create query scopes to sort books by amount of reviews and by the average rating!
I've got a lot of questions under the next video titled "Getting Books with Recent Reviews", so I wanted to clarify what this is video is about!
Learn how to use whereHas to query models based on their relationship.
It's time to learn what a controller is, and then immediately, why you should almost always try to use a resource controller!
Fetching books, adding layout and books template. A lot of code so it takes time!
Let's add the form that filters books by the title!
Let's make a tab to select if you want to see recent books, the highest rated or popular books. This is not as simple as it sounds!
Let's learn how to use the new match expression in PHP. Depending on the value of filter, we will run a specific query scope to filter books.
How to load relations for an already loaded model? When to use lazy loading or eager loading? How to sort the related model by any column? Let's see!
Learn what cache is, how to configure it, when to use it and what to watch out for using query cache as an example.
Cache stays valid for specified amount of time, sometimes though, you want it to invalidate faster, eg. when data changes. Learn how to do that!
We need to refactor the code so it's easy to get the review count and avg rating on any page, without side effects (like sorting by any of those)!
Learn the basics of components in Blade, and create our first one right away - a star rating component!
Let's learn about scoped resource controller, and then make a form for adding reviews!
Learn about rate limiting and how it can be applied through middleware.
We'll build a REST API this time!
Let's create and setup the new REST API project, incl. controllers, models etc.
We need a lot of data to work with, so let's seed the database.
Learn the basics of using Postman, the free and popular REST client that we'll use to manually test and interact with the API we are building.
See how to store data through API, how to validate it and learn a thing or two about HTTP.
Learn how to update and delete data through the API.
How to have full control over what data is being returned from API? Learn about API Resources.
Let's implement the attendee API controller and learn how to use pagination when returning JSON.
Learn how to control what data (relation) is being loaded by using a query parameter.
Let's make a universal trait that lets you load relations of any model or query in every controller by using PHP Traits.
Let's see how to load the Attendee relations.
Let's learn the basics of setting up user authentication, including password hashing, generating tokens using Laravel Sanctum.
Some routes are only for the logged-in users, see how to enforce that.
Copying and pasting the token while in Postman is a lot of work, see how we can automate that!
Let's see how to revoke user tokens and how to sign out.
Let's see how to make simple checks if the user is permitted to do an action on resource using Gates.
Policies allow authorization centered around a resource, let's learn about them.
See more ways on how to authorize with Policy classes, other than using authorizeResource.
Let's build an email reminder about the upcoming events feature, in this video you'll learn about custom artisan commands.
Learn how to schedule tasks to be run later.
How to use Notifications feature to notify users about events by sending an email.
Deferring time consuming tasks to be run in the background, making the UI more snappy.
The API needs throttling to protect your API from excessive usage and potential abuse.