Categories

Friday, April 19, 2024
#919814419350 therichposts@gmail.com
Laravel

How to upload image in Laravel?

Laravel 7.2 routing with route group auth guard check with prefix

Upload image in Laravel

Hello to all, welcome to therichpost.com. In this post, I will tell you, How to upload image in Laravel? I am doing with laravel first time in my website. Laravel is one of the top php mvc framework.

In this post, I am uploading the image public folder by form post.

Here is the working and tested code to upload image in laravel to public folder:
f($request->hasFile('image'))
{
$fileName = 'null';
if(Input::file('image')->isValid()){
$destinationPath = public_path('/posts');
$extension = Input::file('image')->getClientOriginalExtension();
if($extension=='png' || $extension=='jpg' || $extension=='jpeg' || $extension=='gif' || $extension == 'mp4'){

$fileName = uniqid().'.'.$extension;
$data['image']=$fileName;

Input::file('mage')->move($destinationPath, $fileName);
}else{
return $response=array('error' => 'Uploaded File type not allowed');
}
}
}

 I am just showing image upload to public folder and if you have any query related to this post, then please comment below.

 

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.