22 Middleware - Laravel 11 tutorial for beginners.

preview_player
Показать описание
This video is perfect for anyone who wants to learn Laravel 11 from scratch. We'll guide you through everything you need to know, including:

Setting up your development environment
Understanding Laravel's core concepts
Building a CRUD application (Create, Read, Update, Delete)
Working with databases and models
Handling user authentication and authorization
And much more!
By the end of this course, you'll be able to:

Confidently build web applications with Laravel 11
Understand the Laravel architecture
Work with common Laravel features
Apply your knowledge to real-world projects
This tutorial is packed with clear explanations, practical examples, and hands-on exercises.

Ready to level up your web development skills? Let's get started!
#laravel #laravel11 #laravelcourse #laravel_tutorial #fullstack #webdevelopment #php #learnlaravel
Рекомендации по теме
Комментарии
Автор

Middleware - Laravel 11 tutorial for beginners.

tonyxhepaofficial
Автор

I am really learning a lot from this series. I have one request if you could implement ACL using Laravel Spatie package and also include policy. Thank you so much

peter_kyalo
Автор

hello. my contribution is

// Authenticated Users Can Navigate to Any Routes
Route::resource('posts', PostController::class)->middleware('auth')->except(['index', 'show']);

// But Guests Can Only Visit These Specified Routes
Route::resource('posts', PostController::class)->only(['index', 'show']);

JuanMarchant