fromFile($source) ->autoOrient() ->resize(150) ->toFile($newFile, $mimeType, ['quality' => 85]); } catch (Exception $e) { // Handle errors throw new Exception($e->getMessage()); } // Check the thumbnail existence after creating if (!is_file($newFile)) { return false; } return true; }