Great job! Someone that doesn't have the knowledge of PHP OOP will see this as magic😂🤗
@fundaofwebit2 жыл бұрын
😂 ✌
@saranimanodya76702 жыл бұрын
true relates to me
@fundaofwebit2 жыл бұрын
It's not that hard. Just do one laravel 8 crash course on KZbin. You will start understanding, how we are creating pages, routes, controller & model. But, you should have basic understanding of php. That's it.
@TravisHi_YT Жыл бұрын
Hey man, this is a fantastic set of videos, thank you for making them! I've been able to follow perfectly so far using laravel sail and tableplus
@tholfikarmohammed8872 жыл бұрын
Thank you man, this Tutorial has a fine quality of explanation, the way how I enjoyed the tutorial till now, made me forget to check on your channel, and wow... I found that you have a Codeigniter Tutorial also, which am interested in also you did a great job, thank you again. You have a new subscriber with bell->all activated
@fundaofwebit2 жыл бұрын
Thank you. Keep supporting me.
@tycoonentrepreneur4962 жыл бұрын
Hi can i ask for some help? I'm getting an error in saving the new category
@ilmitabassum96002 жыл бұрын
Thanks plz upload more vedios
@basel4952 жыл бұрын
Please can you tell us what extension’s you are using in vs code ??
@ianrifadsha15422 жыл бұрын
Good explanation
@saranimanodya76702 жыл бұрын
Too many arguments to "make:request" command, expected arguments "name". can you fix this error in my terminal
if ($data->hasfile('image')) { $file = $data->file('image'); $filename = time() . '.' . $file->getClientOriginalExtension(); $file->move('uploads/category/', $filename); $category->image = $filename; I have an error on $data variables in line 1 and 2. This error is " Expected type 'object'. Found 'array'. intelephense(1006)" Can you help me fix it?
@fundaofwebit2 жыл бұрын
For $data replace $request only for image. I have shown in the video.
@hamster_gaming_922 жыл бұрын
@@fundaofwebit so now, what can I do to fix it?
@fundaofwebit2 жыл бұрын
$request->hasfile() $request->file
@hamster_gaming_922 жыл бұрын
@@fundaofwebit when I click "Save Category" It also has error. This is "Argument 2 passed to Illuminate\Validation\Factory::make() must be of the type array, null given, called in C:\xampp\htdocs\laravel-blog\vendor\laravel\framework\src\Illuminate\Foundation\Http\FormRequest.php on line 114" :((((( poor me. Pls Help me fix it :(
@TechWithUzzi Жыл бұрын
@@hamster_gaming_92 same problem
@marodesign19142 жыл бұрын
thank you so much
@spacelover28682 жыл бұрын
complete 😀😀😀😀
@NelFeast2 жыл бұрын
how to prevent duplicate name/category?
@fundaofwebit2 жыл бұрын
In form validation, add unique validation for that category name.