Laravel PHP Framework Tutorial - Full Course for Beginners | Build a Blog with Laravel

Laravel PHP Framework Tutorial - Full Course for Beginners | Build a Blog with Laravel

ProgrammingKnowledge

4 года назад

217,531 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@varshadesai7252
@varshadesai7252 - 04.09.2023 06:23

atom-terminal package install error certificate expire please guide how to resolve

Ответить
@stillpickinganame5350
@stillpickinganame5350 - 03.02.2023 05:32

Thank you so so much for this excellent tutorial sir! You're saving my college project! God bless you!

Ответить
@FDS1482
@FDS1482 - 13.01.2023 15:06

The tutorial is great but my controllers are not responding, can you show us how to work with the latest

Ответить
@dennissaviola9542
@dennissaviola9542 - 02.08.2022 22:56

why when I did the localhost/pkproject/public, it shows me this error
Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.1.0". You are running 7.4.26. in C:\wamp64\www\pkproject\vendor\composer\platform_check.php on line 24
even though i donwloaded the 8.1.0 version of composer

can anyone help me

Ответить
@timfranklin4724
@timfranklin4724 - 29.07.2022 16:46

I am receiving an error while trying to create the project:
Problem 1
- laravel/framework[v8.75.0, ..., 8.x-dev] require league/flysystem ^1.1 -> satisfiable by league/flysystem[1.1.0, ..., 1.x-dev].
- league/flysystem[1.1.0, ..., 1.x-dev] require ext-fileinfo * -> it is missing from your system. Install or enable PHP's fileinfo extension.
- Root composer.json requires laravel/framework ^8.75 -> satisfiable by laravel/framework[v8.75.0, ..., 8.x-dev].

Ответить
@mduduziskhosana8741
@mduduziskhosana8741 - 23.07.2022 21:22

Thank you 🙌 I just finished the course everything works as its supposed to.

Ответить
@merlinafera4865
@merlinafera4865 - 05.07.2022 08:18

i've been try use GX40Official tools

Ответить
@guillaumevdr908
@guillaumevdr908 - 01.07.2022 19:50

Thank you so much

Ответить
@wanyoikedanny472
@wanyoikedanny472 - 08.06.2022 12:38

nice work sir,God bless you alot

Ответить
@belovednyenyewa7780
@belovednyenyewa7780 - 20.05.2022 13:32

Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.0.2". You are running 7.4.26.... how do i fix this fatal error?

Ответить
@Aapkadaksh
@Aapkadaksh - 24.03.2022 11:21

no i want xampp

Ответить
@aniskadri140
@aniskadri140 - 13.03.2022 21:35

thank you

Ответить
@berhanukebito3454
@berhanukebito3454 - 01.03.2022 15:07

Thank you for this great tutorial

Ответить
@motoboy6666
@motoboy6666 - 24.02.2022 18:02

Thanks for this, a true beginners tutorial, not like all those claiming to be and then are really not :)

Ответить
@juremyclorkson3518
@juremyclorkson3518 - 07.12.2021 14:34

Thank you for this great tutorial. I followed it on 1.5 playback speed for past two days and I am now skilled in Laravel. It was really helpful because I started working recently in a company that works in Laravel. Keep up the good work

Ответить
@migueljoshuab.campos8806
@migueljoshuab.campos8806 - 06.12.2021 12:45

can someone help me i want to delete the recent image in the cover_images folder and replace it with the new one when updating how can i do that because he didn't mention on how to delete the recent image to the cover_image table and replace it to the new one. this is my code that i copy from this tutorial.
thank you for your answers

public function update(Request $request, $id)
{
$this->validate($request,[
'title' =>'required',
'body' => 'required',
'cover_image'=> 'image|nullable|max:1999'
]);
//file upload

if($request->hasFile('cover_image')){
//get file name with extension
$fileNameWithExt = $request->file('cover_image')->getClientOriginalName();
//get just a file name
$filename = pathinfo($fileNameWithExt,PATHINFO_FILENAME);
//get the extension
$extension = $request->file('cover_image')->getClientOriginalExtension();
//file name to store
$filenameToStore = $filename.'_'.time().'.'.$extension;
//upload image
$path = $request->file('cover_image')->storeAs('public/cover_images',$filenameToStore);
}
$post = Post::find($id);
$post->title = $request->input('title');
$post->body = $request->input('body');
if($request->hasFile('cover_image')){
$post->cover_image = $filenameToStore;
}

$post->save();
return redirect('/Post')->with('success','Post updated.');
}

Ответить
@mouctechy
@mouctechy - 11.11.2021 22:18

THANK YOU SO MUCH I AM REALLY GRATEFUL. AFTER STARTING WITH BRAD TRAVERSE MEDIA WHO WE ALL OWE THIS INSPIRATION. I WAS HAVING SOME ISSUES WITH LARAVEL 5 SINCE I WAS USING LARAVEL 8 SO THIS TUTO GAVE ME ALL I NEEDED.
THANK YOU SO MUCH 🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌

Ответить
@johndanielparagas5509
@johndanielparagas5509 - 02.11.2021 17:22

Salamat Kabayan!

Ответить
@jimcaalesstv3156
@jimcaalesstv3156 - 11.07.2021 15:16

which version of laravel are you using

Ответить
@itsyoboitrev
@itsyoboitrev - 07.07.2021 01:07

Are you FIlipino?

Ответить
@moali6657
@moali6657 - 27.06.2021 15:42

can we get this tutorial on github please. thank you

Ответить
@amarachimoses
@amarachimoses - 01.06.2021 03:26

Hello, please can anybody help me...I'm trying to make index files and files path visible again in my laravel project. I know how to hide files and file paths with htacces but please does anybody know how to undo it? Thanks in advance.

Ответить
@ghostman2876
@ghostman2876 - 15.05.2021 13:12

salamat po

Ответить
@zgrnt
@zgrnt - 26.04.2021 06:46

One of the best tutorials in Laravel. Especially liked to the point approach, errors you make and how you fix them... loved the background sounds here and there too.. thank you for the great course...

Ответить
@pro-user255
@pro-user255 - 01.03.2021 12:11

can you list all the commands with timestamp

Ответить
@josuebarros-desenvolvedorw2490
@josuebarros-desenvolvedorw2490 - 17.02.2021 06:26

Excellent tutorial! Thanks a lot!

I will redo it tomorrow to implement blog onto a Real Estate Website I'm building ;)

Ответить
@Psychronisch
@Psychronisch - 21.01.2021 12:56

please - would it be that hard for all the tutorials to just write in the description which version of the framework ones using......there are major differences and I don't know if I learn something that is completely obsolete....

Ответить
@sathvikshetty6349
@sathvikshetty6349 - 17.01.2021 14:00

This is which version Laravel? Bro

Ответить
@احمدعبدالله-ذ7ص
@احمدعبدالله-ذ7ص - 03.01.2021 21:19

laravel 7 or 8?

Ответить
@adeniyibalogun202
@adeniyibalogun202 - 03.01.2021 09:37

am getting this error "
ErrorException

count(): Parameter must be an array or an object that implements
Countable (View:
C:\Users\HP\baloblog\resources\views\posts\index.blade.php)
" any help please

Ответить
@adeniyibalogun202
@adeniyibalogun202 - 03.01.2021 09:22

i am finding it very difficult to post the data in my database to the posts page .....any help please

Ответить
@bobjb423
@bobjb423 - 23.12.2020 00:56

In the controller creation section and for Laravel 7.3, I was getting an error describing how the controller wasn't found. I was able to fix this by using [PagesController::class, 'index'] instead of 'PagesController@index'

Ответить
@mhasancoder
@mhasancoder - 19.12.2020 13:04

Use Laragon, far better than Wampserver :)

Ответить
@abdulroheemolalekan
@abdulroheemolalekan - 10.12.2020 14:05

Please how do I get the source code of this project

Ответить
@happycoding5084
@happycoding5084 - 08.11.2020 07:30

Give credits to Brad Traversy for your presentation, it's a sign of respect to the author.

Ответить
@LoveCintaAmour
@LoveCintaAmour - 07.11.2020 05:24

Hello Sir, Could you help me? I have a project am working on and displays errors and am lost some how, could you give me you émail so that i may send you pictures of those errors? Thanks.

Ответить
@johnmarkvictorino2788
@johnmarkvictorino2788 - 02.11.2020 17:42

PInoy po ba kayo?

Ответить
@arvincaparros9078
@arvincaparros9078 - 31.10.2020 12:59

are you a Filipino?. thanks for this tutorial.

Ответить
@AkashDeep-ux1ig
@AkashDeep-ux1ig - 30.10.2020 05:47

please make a vdo like this using laravel 8
and make a vdo like this on codeigniter 4

Ответить
@kevinsigue1207
@kevinsigue1207 - 27.10.2020 13:34

when running
php artisan make:controller PostsController --resource
the index,create,show etc. functions are not generated
i also tried -r but no luck
does --resource /-r are depreciated?

Ответить
@raymundmancao4897
@raymundmancao4897 - 23.10.2020 17:26

I already follow the version on ever dependencies but I still have this error
Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 32 bytes) in phar://C:/composer/composer.phar/vendor/composer/semver/src/Constraint/Constraint.php on line 153

Ответить