Upload Image and validate on it on laravel

1082 0 0 0

Last Updated : 2024-04-20 07:19:20

how to upload image and validate on its properties and display it

Validate on image input 


$validatedData = $request->validate([
'profilePicture' => 'image|mimes:jpeg,png,jpg,gif,svg|max:2048'
]);

receive image and rename it and move to the destination folder 


if ($request->hasFile('profilePicture')) {
$image = $request->file('profilePicture');
$name = time().'.'.$image->getClientOriginalExtension();
$destinationPath = public_path('/images/users');
$image->move($destinationPath, $name);
$user->image = $name ; // save name to DB
}

Mahmoud Anwar

Mahmoud Anwar

Back End Developer with a passion for developing innovative web applications that expedite the efficiency and effectiveness of organizational success. Well-versed in technology and writing code to create systems that are reliable and user-friendly. Also has the proven ability to motivate, educate, and collaborate effectively to build web applications and effectively track changes. Confident communicator, strategic thinker, and innovative creator to develop software that is customized to meet a company’s organizational needs, highlight their core competencies, and further their success.