Комментарии:
atom-terminal package install error certificate expire please guide how to resolve
ОтветитьThank you so so much for this excellent tutorial sir! You're saving my college project! God bless you!
ОтветитьThe tutorial is great but my controllers are not responding, can you show us how to work with the latest
Ответить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
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].
Thank you 🙌 I just finished the course everything works as its supposed to.
Ответитьi've been try use GX40Official tools
ОтветитьThank you so much
Ответитьnice work sir,God bless you alot
Ответить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?
Ответитьno i want xampp
Ответитьthank you
ОтветитьThank you for this great tutorial
ОтветитьThanks for this, a true beginners tutorial, not like all those claiming to be and then are really not :)
Ответить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
Ответить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.');
}
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 🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌🙌
Salamat Kabayan!
Ответитьwhich version of laravel are you using
ОтветитьAre you FIlipino?
Ответитьcan we get this tutorial on github please. thank you
Ответить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.
Ответитьsalamat po
Ответить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...
Ответитьcan you list all the commands with timestamp
ОтветитьExcellent tutorial! Thanks a lot!
I will redo it tomorrow to implement blog onto a Real Estate Website I'm building ;)
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....
ОтветитьThis is which version Laravel? Bro
Ответитьlaravel 7 or 8?
Ответить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
i am finding it very difficult to post the data in my database to the posts page .....any help please
Ответить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'
ОтветитьUse Laragon, far better than Wampserver :)
ОтветитьPlease how do I get the source code of this project
ОтветитьGive credits to Brad Traversy for your presentation, it's a sign of respect to the author.
Ответить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.
ОтветитьPInoy po ba kayo?
Ответитьare you a Filipino?. thanks for this tutorial.
Ответитьplease make a vdo like this using laravel 8
and make a vdo like this on codeigniter 4
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?
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