28 File Upload - 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
Рекомендации по теме
Комментарии
Автор

28 File Upload - Laravel 11 tutorial for beginners.

tonyxhepaofficial
Автор

Great work Tony! Can you tell us which font is this that you are using?

MarcelloPato
Автор

hi! what pluggin do you have for those snippets/help when you write laravel code?

chiquiok
Автор

It would be interesting to show the management of multiple doc and pdf files

juniorgeba
Автор

You did not say how to display the same uploaded file

omidatash.peykar
Автор

Hi Tony
Through this tutorial I had some problems, as the image was not being deleted, the way I added the image in a non-public place and to show the image in the view, so here's how I improved it, in case anyone has the same problem.

In view: <img class="mb-5 rounded-lg" alt="Image 1">

in Controller Post

update:
$validate = $request->validate([
'title' => ['required', 'min:3', 'max:255'],
'content' => ['required', 'min:10', 'max:255'],
'thumbnail' => ['nullable', 'image', 'mimes:jpg, png, jpeg, gif', 'max:2048']
]);

if {
if {

}
$validate['thumbnail'] =
}

$post->update($validate);


store:
$validate = $request->validate([
'title' => ['required', 'min:3', 'max:255'],
'content' => ['required', 'min:10', 'max:255'],
'thumbnail' => ['nullable', 'image', 'mimes:jpg, png, jpeg, gif', 'max:2048']
]);

$validate['thumbnail'] =



delete:

$post->delete();

rafablum