I need some help on converting PNG files to JPG. I tried this stack but with no success. Can you help me?
HTML
<div class="custom-file">
<input type="file" class="custom-file-input" id="logo" name="logo" / >
<label class="custom-file-label" for="logo"></label>
</div>
LARAVEL
$imageName = time().'.'.$request->logo->getClientOriginalExtension();
$request->logo->move(public_path('/dist/img/logo'), $imageName);
$company->logo = $imageName;
$company->save();